MESCIUS SPREAD for Windows Forms 15.0J
CurrentColumn プロパティ
使用例 

マウスポインタを含むセルの列インデックスを取得します。
構文
'宣言
 
Public ReadOnly Property CurrentColumn As Integer
public int CurrentColumn {get;}

プロパティ値

現在の列のインデックスを表す Integer
使用例
次のサンプルコードは、ユーザーが1列目のみを選択しようとした場合に選択をキャンセルします。
private void fpSpread1SelectionChanging(object sender, FarPoint.Win.Spread.SelectionChangingEventArgs e) 
{
    if (e.CurrentColumn == 0)
    {
        e.Cancel = true;
    }
}
Private Sub FpSpread1SelectionChanging(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.SelectionChangingEventArgs)
Handles FpSpread1.SelectionChanging
    If e.CurrentColumn = 0 Then
        e.Cancel = True
    End If
End Sub
参照

SelectionChangingEventArgs クラス
SelectionChangingEventArgs メンバ

 

 


© MESCIUS inc. All rights reserved.