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


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

パラメータ

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

戻り値の型

ビューポート行の高さ(ピクセル単位)を表す Integer
例外
例外説明
System.ArgumentOutOfRangeException指定されたシートインデックスが有効ではありません。有効な値の範囲は、ゼロからシートの数までです。
解説

シートインデックスは0から始まります。つまり、最初のシートのインデックスは0になります。

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

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

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

 

 


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