FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > SpreadView クラス > GetActiveRowViewportIndex メソッド : 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 )
例外 | 説明 |
---|---|
System.ArgumentOutOfRangeException | 指定されたシートインデックスが有効ではありません。有効な値の範囲は、0からシートの総数までです。 |
シートインデックスは0から始まります。つまり、最初のシートのインデックスは0になります。
ビューポート行のインデックスは0から始まります。つまり、最初(一番上)のビューポート行のインデックスは0になります。
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())