PowerTools SPREAD for Windows Forms 8.0J
GetActiveColumnViewportIndex() メソッド


アクティブシートのアクティブビューポート列のインデックスを取得します。
構文
'Declaration
 
Public Overloads Function GetActiveColumnViewportIndex() As Integer
'使用法
 
Dim instance As FpSpread
Dim value As Integer
 
value = instance.GetActiveColumnViewportIndex()
public int GetActiveColumnViewportIndex()

戻り値の型

アクティブ ビューポート列のインデックスを表す Integer
解説

ビューポート列のインデックスは0から始まります。つまり、最初(一番左)のビューポート列のインデックスは0になります。

fpSpread1.Sheets.Count = 3;
fpSpread1.AddViewport(1, 0, 0);

int i;
i = fpSpread1.GetActiveColumnViewportIndex(1);
textBox1.Text = i.ToString();
FpSpread1.AddViewport(0, 0)

Dim i As Integer
i = FpSpread1.GetActiveColumnViewportIndex()
TextBox1.Text = i.ToString()
参照

FpSpread クラス
FpSpread メンバ
オーバーロード一覧

 

 


© 2004-2015, GrapeCity inc. All rights reserved.