PowerTools SPREAD for Windows Forms 8.0J
CurrentRow プロパティ


マウスポインタを含むセルの行インデックスを取得します。
構文
'Declaration
 
Public ReadOnly Property CurrentRow As Integer
'使用法
 
Dim instance As SelectionChangingEventArgs
Dim value As Integer
 
value = instance.CurrentRow
public int CurrentRow {get;}

プロパティ値

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

SelectionChangingEventArgs クラス
SelectionChangingEventArgs メンバ

 

 


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