PowerTools SPREAD for Windows Forms 8.0J
ActiveRowIndex プロパティ (SheetView)


このシートのアクティブセルの行インデックスを取得または設定します。
構文
'Declaration
 
Public Property ActiveRowIndex As Integer
'使用法
 
Dim instance As SheetView
Dim value As Integer
 
instance.ActiveRowIndex = value
 
value = instance.ActiveRowIndex
public int ActiveRowIndex {get; set;}

プロパティ値

アクティブ行の行インデックスを表す Integer
解説
このプロパティが使用できるのは実行時のみです。アクティブ行が存在していない場合、このプロパティは「-1」または null を返します。存在していない列と行をアクティブにすることができません。
次のサンプルコードでは、このメンバを使用して、アクティブ列とアクティブ行のインデックスを返しています。
fpSpread1.ActiveSheet.SetActiveCell(2, 2);
label1.Text = "The active column is " + fpSpread1.ActiveSheet.ActiveColumnIndex.ToString() + " and the active row is " + fpSpread1.ActiveSheet.ActiveRowIndex.ToString();
FpSpread1.ActiveSheet.SetActiveCell(2, 2)
Label1.Text = "The active column is " & FpSpread1.ActiveSheet.ActiveColumnIndex.ToString() & " and the active row is " & FpSpread1.ActiveSheet.ActiveRowIndex.ToString()
参照

SheetView クラス
SheetView メンバ

開発者ガイド

アクティブセル

 

 


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