PowerTools SPREAD for Windows Forms 8.0J
GetViewportRectangle メソッド (FpSpread)


ビューポート行インデックス
ビューポート列インデックス
ビューポートの矩形を取得します。
構文
'Declaration
 
Public Function GetViewportRectangle( _
   ByVal rowViewportIndex As Integer, _
   ByVal columnViewportIndex As Integer _
) As Rectangle
'使用法
 
Dim instance As FpSpread
Dim rowViewportIndex As Integer
Dim columnViewportIndex As Integer
Dim value As Rectangle
 
value = instance.GetViewportRectangle(rowViewportIndex, columnViewportIndex)
public Rectangle GetViewportRectangle( 
   int rowViewportIndex,
   int columnViewportIndex
)

パラメータ

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

戻り値の型

ビューポート矩形の X 座標、Y 座標、高さ、および幅を含む Rectangle オブジェクト
解説

このメソッドを使用すると、アクティブシートにある特定のビューポートの境界座標を取得できます。これはSpreadViewクラスの次の4つのメソッドをコンポーネントレベルで公開しています。

ビューポート列とビューポート行のインデックスは0から始まるので、最初(一番左)のビューポート列と最初(一番上)のビューポート行のインデックスはどちらも0になります。

次のサンプルコードは、ビューポート矩形の上辺を返します。
Rectangle r;
r = fpSpread1.GetViewportRectangle(0, 0);
Debug.WriteLine(r.Top.ToString());
Dim r As Rectangle
r = FpSpread1.GetViewportRectangle(0, 0)
Debug.WriteLine(r.Top.ToString)
参照

FpSpread クラス
FpSpread メンバ
SpreadView クラス

開発者ガイド

ビューポート

 

 


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