FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > SpreadView クラス > GetActiveColumnViewportIndex メソッド : GetActiveColumnViewportIndex(Int32) メソッド |
'Declaration Public Overloads Function GetActiveColumnViewportIndex( _ ByVal sheetIndex As Integer _ ) As Integer
'使用法 Dim instance As SpreadView Dim sheetIndex As Integer Dim value As Integer value = instance.GetActiveColumnViewportIndex(sheetIndex)
public int GetActiveColumnViewportIndex( int sheetIndex )
例外 | 説明 |
---|---|
System.ArgumentOutOfRangeException | 指定されたシートインデックスが有効ではありません。有効な値の範囲は、0からシートの総数までです。 |
シートインデックスは0から始まります。つまり、最初のシートのインデックスは0になります。
ビューポート列のインデックスは0から始まります。つまり、最初(一番左)のビューポート列のインデックスは0になります。
FarPoint.Win.Spread.SpreadView sv;
int i;
sv = fpSpread1.GetRootWorkbook();
i = sv.GetActiveColumnViewportIndex(0);
MessageBox.Show(i.ToString());
Dim sv As FarPoint.Win.Spread.SpreadView Dim i As Integer sv = FpSpread1.GetRootWorkbook() i = sv.GetActiveColumnViewportIndex(0) MessageBox.Show(i.ToString())