FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > SpreadView クラス > GetActiveRowViewportIndex メソッド : GetActiveRowViewportIndex() メソッド |
'Declaration Public Overloads Function GetActiveRowViewportIndex() As Integer
'使用法 Dim instance As SpreadView Dim value As Integer value = instance.GetActiveRowViewportIndex()
public int GetActiveRowViewportIndex()
インデックスは0から始まります。つまり、最初の項目のインデックスは0になり、2番目の項目は1、3番目の項目は2と続きます。
ビューポート行のインデックスは0から始まります。つまり、最初(一番上)のビューポート行のインデックスは0になります。
FarPoint.Win.Spread.SpreadView sv; sv = fpSpread1.GetRootWorkbook(); sv.AddViewport(0, 0); label1.Text = sv.GetActiveRowViewportIndex().ToString();
Dim sv As FarPoint.Win.Spread.SpreadView sv = FpSpread1.GetRootWorkbook sv.AddViewport(0, 0) Label1.Text = sv.GetActiveRowViewportIndex().ToString()