FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > SheetView クラス : ColumnAutoSorted プロパティ |
'Declaration Public ReadOnly Property ColumnAutoSorted As Integer
public int ColumnAutoSorted {get;}
このプロパティが使用できるのは実行時のみです。
Random r = new Random(); int i, j, x; for (i = 0; i<= 50; i++) { for (j = 0; j<=3; j++) fpSpread1.ActiveSheet.SetValue(i, j, r.Next(1, 200).ToString()); } fpSpread1.ActiveSheet.AutoSortColumn(0, true, false); x = fpSpread1.ActiveSheet.ColumnAutoSorted; label1.Text = "The last column auto sorted is column " + x.ToString();
Dim r As New Random() Dim i, j, x As Integer For i = 0 To 50 For j = 0 To 3 FpSpread1.ActiveSheet.SetValue(i, j, r.Next(1, 200).ToString()) Next j Next i FpSpread1.ActiveSheet.AutoSortColumn(0, True, True) x = FpSpread1.ActiveSheet.ColumnAutoSorted Label1.Text = "The last column to be auto sorted was column " & x.ToString()