FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > SheetView クラス > AutoSortColumn メソッド : AutoSortColumn(Int32,Boolean) メソッド |
'Declaration Public Overloads Sub AutoSortColumn( _ ByVal column As Integer, _ ByVal ascending As Boolean _ )
Random r = new Random(); int i; for (i = 0; i <= 200; i++) { fpSpread1.ActiveSheet.SetValue(i, 0, r.Next().ToString()); } fpSpread1.ActiveSheet.AutoSortColumn(0, false);
Dim r As New Random() Dim i As Integer For i = 0 To 200 FpSpread1.ActiveSheet.SetValue(i, 0, r.Next.ToString()) Next FpSpread1.ActiveSheet.AutoSortColumn(0, False)