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


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

戻り値の型

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

インデックスは0から始まります。つまり、最初の項目のインデックスは0になり、2番目の項目は1、3番目の項目は2と続きます。

fpSpread1.AddViewport(0, 0);

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

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

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

 

 


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