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


ビューポート行のインデックス
アクティブシートの指定したビューポート行の高さを取得します。
構文
'Declaration
 
Public Overloads Function GetViewportHeight( _
   ByVal rowViewportIndex As Integer _
) As Integer
'使用法
 
Dim instance As SpreadView
Dim rowViewportIndex As Integer
Dim value As Integer
 
value = instance.GetViewportHeight(rowViewportIndex)
public int GetViewportHeight( 
   int rowViewportIndex
)

パラメータ

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

戻り値の型

ビューポート行の高さ(ピクセル単位)を表す Integer
解説

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

次のサンプルコードは、GetViewportHeightメソッドを使用します。
int i;
i = fpSpread1.GetRootWorkbook.GetViewportHeight(0);
Debug.WriteLine(i.ToString());
Dim i As Integer
i = FpSpread1.GetRootWorkbook.GetViewportHeight(0)
Debug.WriteLine(i.ToString())
参照

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

 

 


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