FarPoint.Win.Spread アセンブリ > FarPoint.Win.Spread 名前空間 > SpreadView クラス > GetViewportBottomRow メソッド : GetViewportBottomRow(Int32) メソッド |
'宣言
Public Overloads Function GetViewportBottomRow( _ ByVal rowViewportIndex As Integer _ ) As Integer
public int GetViewportBottomRow( int rowViewportIndex )
ビューポート行のインデックスは0から始まります。つまり、最初(一番上)のビューポート行のインデックスは0になります。
FarPoint.Win.Spread.SpreadView sv; int i; sv = fpSpread1.GetRootWorkbook(); sv.AddViewport(0, 0); i = sv.GetViewportBottomRow(0); MessageBox.Show("The bottom row of the viewport is " + i.ToString());
Dim sv As FarPoint.Win.Spread.SpreadView Dim i As Integer sv = FpSpread1.GetRootWorkbook() sv.AddViewport(0, 0) i = sv.GetViewportBottomRow(0) MessageBox.Show("The bottom row of the viewport is " & i.ToString())