MESCIUS SPREAD for Windows Forms 15.0J
GetViewportTopRow(Int32) メソッド
使用例 

ビューポート行のインデックス
指定したシートの指定したビューポート行の一番上のセル行を取得します。
構文
'宣言
 
Public Overloads Function GetViewportTopRow( _
   ByVal rowViewportIndex As Integer _
) As Integer
public int GetViewportTopRow( 
   int rowViewportIndex
)

パラメータ

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

戻り値の型

ビューポートの一番上の行のインデックスを表す Integer
解説

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

使用例
fpSpread1.AddViewport(0, 0);

int i;
fpSpread1.SetViewportTopRow(1, 5);
i = fpSpread1.GetViewportTopRow(1);
textBox1.Text = i.ToString();
FpSpread1.AddViewport(0, 0)

Dim i As Integer
FpSpread1.SetViewportTopRow(1, 5)
i = FpSpread1.GetViewportTopRow(1)
TextBox1.Text = i.ToString()
参照

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

 

 


© MESCIUS inc. All rights reserved.