FarPoint.Win.Spread アセンブリ > FarPoint.Win.Spread 名前空間 > FpSpread クラス > GetViewportBottomRow メソッド : GetViewportBottomRow(Int32,Int32) メソッド |
'宣言
Public Overloads Function GetViewportBottomRow( _ ByVal sheetIndex As Integer, _ ByVal rowViewportIndex As Integer _ ) As Integer
public int GetViewportBottomRow( int sheetIndex, int rowViewportIndex )
例外 | 解説 |
---|---|
System.ArgumentOutOfRangeException | 指定されたシートのインデックスが範囲外です。0からシートの総数までの値を指定する必要があります。 |
シートインデックスは0から始まります。つまり、最初のシートのインデックスは0になります。
ビューポート行のインデックスは0から始まります。つまり、最初(一番上)のビューポート行のインデックスは0になります。
int i = fpSpread1.GetViewportBottomRow(0, 1);
MessageBox.Show(i.ToString());
Dim i As Integer = FpSpread1.GetViewportBottomRow(0, 1) MessageBox.Show(i.ToString())