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