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


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

パラメータ

columnViewportIndex
ビューポート列のインデックス

戻り値の型

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

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

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

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

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

SpreadView クラス
SpreadView メンバ

開発者ガイド

ビューポート

 

 


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