PowerTools SPREAD for Windows Forms 8.0J
ColumnFooter プロパティ (CellClickEventArgs)


クリックされたセルが列フッタにあるかどうかを取得します。
構文
'Declaration
 
Public ReadOnly Property ColumnFooter As Boolean
'使用法
 
Dim instance As CellClickEventArgs
Dim value As Boolean
 
value = instance.ColumnFooter
public bool ColumnFooter {get;}
次のサンプルコードは、ColumnFooterプロパティを使用します。
private void fpSpread1_CellClick(object sender, FarPoint.Win.Spread.CellClickEventArgs e)
        {
            listBox1.Items.Add(e.ColumnFooter.ToString());
        }
Private Sub FpSpread1_CellClick(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.CellClickEventArgs) Handles FpSpread1.CellClick
        ListBox1.Items.Add(e.ColumnFooter.ToString())
End Sub
参照

CellClickEventArgs クラス
CellClickEventArgs メンバ

 

 


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