Guest User

Untitled

a guest
Feb 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.75 KB | None | 0 0
  1. Excel.Range tempRange = ws.get_Range("F3", "H8");
  2.  
  3. tempRange.Sort(Type.Missing,
  4.                     Excel.XlSortOrder.xlAscending,
  5.                     Type.Missing,
  6.                     Excel.XlSortOrder.xlAscending,
  7.                     Excel.XlSortOrder.xlAscending,
  8.                     Type.Missing,
  9.                     Excel.XlSortOrder.xlAscending,
  10.                     Excel.XlYesNoGuess.xlYes,
  11.                     Type.Missing,
  12.                     Type.Missing,
  13.                     Excel.XlSortOrientation.xlSortColumns,
  14.                     Excel.XlSortMethod.xlPinYin,
  15.                     Excel.XlSortDataOption.xlSortNormal,
  16.                     Excel.XlSortDataOption.xlSortNormal,
  17.                     Excel.XlSortDataOption.xlSortNormal);
Add Comment
Please, Sign In to add comment