FarPoint.Win.Spread アセンブリ > FarPoint.Win.Spread 名前空間 > FpSpread クラス : GetViewportRectangle メソッド |
'宣言
Public Function GetViewportRectangle( _ ByVal rowViewportIndex As Integer, _ ByVal columnViewportIndex As Integer _ ) As Rectangle
public Rectangle GetViewportRectangle( int rowViewportIndex, int columnViewportIndex )
このメソッドを使用すると、アクティブシートにある特定のビューポートの境界座標を取得できます。これは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)