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


シートのインデックス
ビューポート行のインデックス
指定したシートの指定したビューポート行の一番下のセル行を取得します。
構文
'Declaration
 
Public Overloads Function GetViewportBottomRow( _
   ByVal sheetIndex As Integer, _
   ByVal rowViewportIndex As Integer _
) As Integer
'使用法
 
Dim instance As FpSpread
Dim sheetIndex As Integer
Dim rowViewportIndex As Integer
Dim value As Integer
 
value = instance.GetViewportBottomRow(sheetIndex, rowViewportIndex)
public int GetViewportBottomRow( 
   int sheetIndex,
   int rowViewportIndex
)

パラメータ

sheetIndex
シートのインデックス
rowViewportIndex
ビューポート行のインデックス

戻り値の型

ビューポートの一番下の行のインデックスを表す Integer
例外
例外説明
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())
参照

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

 

 


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