PowerTools SPREAD for Windows Forms 8.0J
SetColumnAutoSortIndex メソッド


列インデックス
自動ソートインデックス
指定した列の自動ソートインデックスを設定します。
構文
'Declaration
 
Public Sub SetColumnAutoSortIndex( _
   ByVal column As Integer, _
   ByVal value As Integer _
) 
'使用法
 
Dim instance As SheetView
Dim column As Integer
Dim value As Integer
 
instance.SetColumnAutoSortIndex(column, value)
public void SetColumnAutoSortIndex( 
   int column,
   int value
)

パラメータ

column
列インデックス
value
自動ソートインデックス
解説
値-1は、デフォルト列の設定が継承されることを示します。デフォルト値は-1で、最後の列ヘッダ行にインジケーターが描画されることを示します。
次のサンプルコードは、ソートインデックスの列ヘッダ行の位置を指定します。
private void Form1_Load(object sender, EventArgs e)
        {
            fpSpread1.Sheets[0].ColumnHeader.RowCount = 3;
            fpSpread1.Sheets[0].ColumnHeaderAutoTextIndex = 1;
            fpSpread1.Sheets[0].Cells[0, 0].Text = "Testing";
            fpSpread1.Sheets[0].Columns[0, 2].AllowAutoSort = true;
            fpSpread1.Sheets[0].Columns[3].AllowAutoFilter = true;
            fpSpread1.Sheets[0].SetColumnAutoSortIndex(0, 0);
            fpSpread1.Sheets[0].SetColumnAutoFilterIndex(3, 1);          
        }

private void button1_Click(object sender, EventArgs e)
        {
            listBox1.Items.Add(fpSpread1.Sheets[0].GetColumnAutoSortIndex(0).ToString());
            listBox1.Items.Add(fpSpread1.Sheets[0].GetColumnAutoFilterIndex(3).ToString());         
        }
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        FpSpread1.Sheets(0).ColumnHeader.RowCount = 3
        FpSpread1.Sheets(0).ColumnHeaderAutoTextIndex = 1
        FpSpread1.Sheets(0).Cells(0, 0).Text = "Testing"
        FpSpread1.Sheets(0).Columns(0, 2).AllowAutoSort = True
        FpSpread1.Sheets(0).Columns(3).AllowAutoFilter = True
        FpSpread1.Sheets(0).SetColumnAutoSortIndex(0, 0)
        FpSpread1.Sheets(0).SetColumnAutoFilterIndex(3, 1)
End Sub

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        ListBox1.Items.Add(FpSpread1.Sheets(0).GetColumnAutoSortIndex(0).ToString())
        ListBox1.Items.Add(FpSpread1.Sheets(0).GetColumnAutoFilterIndex(3).ToString())
End Sub
参照

SheetView クラス
SheetView メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.