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