PowerTools SPREAD for Windows Forms 8.0J
GetActiveRowViewportIndex(Int32) メソッド


シートインデックス
指定したシートのアクティブビューポート行のインデックスを取得します。
構文
'Declaration
 
Public Overloads Function GetActiveRowViewportIndex( _
   ByVal sheetIndex As Integer _
) As Integer
'使用法
 
Dim instance As SpreadView
Dim sheetIndex As Integer
Dim value As Integer
 
value = instance.GetActiveRowViewportIndex(sheetIndex)
public int GetActiveRowViewportIndex( 
   int sheetIndex
)

パラメータ

sheetIndex
シートインデックス

戻り値の型

アクティブ ビューポート行のインデックスを表すInteger
例外
例外説明
System.ArgumentOutOfRangeException指定されたシートインデックスが有効ではありません。有効な値の範囲は、0からシートの総数までです。
解説

シートインデックスは0から始まります。つまり、最初のシートのインデックスは0になります。

ビューポート行のインデックスは0から始まります。つまり、最初(一番上)のビューポート行のインデックスは0になります。

次のサンプルコードは、GetActiveRowViewportIndexメソッドを使用します。
FarPoint.Win.Spread.SpreadView sv;
int i;
sv = fpSpread1.GetRootWorkbook();
i = sv.GetActiveRowViewportIndex(0);
MessageBox.Show(i.ToString());
Dim sv As FarPoint.Win.Spread.SpreadView
Dim i As Integer
sv = FpSpread1.GetRootWorkbook()
i = sv.GetActiveRowViewportIndex(0)
MessageBox.Show(i.ToString())
参照

SpreadView クラス
SpreadView メンバ
オーバーロード一覧

 

 


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