PowerTools SPREAD for Windows Forms 8.0J
GetViewportY メソッド


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

パラメータ

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

戻り値の型

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

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

このメソッドを使用すると、アクティブシートにある特定のビューポートの特定の境界値を取得できます。
次の4つのメソッドは互いに併用することを目的として用意されています。

これらはFpSpreadクラスのGetViewportRectangleメソッドと同等です。

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

SpreadView クラス
SpreadView メンバ

開発者ガイド

ビューポート

 

 


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