GrapeCity SPREAD for Windows Forms 11.0J
GetViewportTopRow(Int32) メソッド


ビューポート行のインデックス
指定したシートの指定したビューポート行の一番上のセル行を取得します。
構文
'Declaration
 
Public Overloads Function GetViewportTopRow( _
   ByVal rowViewportIndex As Integer _
) As Integer
'使用法
 
Dim instance As FpSpread
Dim rowViewportIndex As Integer
Dim value As Integer
 
value = instance.GetViewportTopRow(rowViewportIndex)
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 メンバ
オーバーロード一覧

 

 


© 2004-2018, GrapeCity Inc. All rights reserved.