MESCIUS SPREAD for Windows Forms 15.0J
Sheet プロパティ (AutoSortingColumnEventArgs)
使用例 

自動ソートを実行する行を含むシートを取得します。
構文
'宣言
 
Public ReadOnly Property Sheet As SheetView
public SheetView Sheet {get;}

プロパティ値

ソートするシートを含むSheetViewオブジェクト
使用例
次のサンプルコードは、ソート済み列の色を変更します。
private void button1Click(object sender, System.EventArgs e)
{
     fpSpread1.ActiveSheet.AutoSortColumn(0);
}

private void fpSpread1_AutoSortingColumn(object sender, FarPoint.Win.Spread.AutoSortingColumnEventArgs e)
{
     e.Sheet.Columns[e.Column].BackColor = Color.Yellow;
}
Private Sub Button1Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
     FpSpread1.ActiveSheet.AutoSortColumn(0)
End Sub

Private Sub FpSpread1_AutoSortingColumn(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.AutoSortingColumnEventArgs)
Handles FpSpread1.AutoSortingColumn
     e.Sheet.Columns(e.Column).BackColor = Color.Yellow
End Sub
参照

AutoSortingColumnEventArgs クラス
AutoSortingColumnEventArgs メンバ

 

 


© MESCIUS inc. All rights reserved.