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


行インデックス
検索を開始する列の1つ前の列インデックス(列0から開始する場合は-1)
指定した行で、スタイル設定を含む次の列のインデックスを取得します。
構文
'Declaration
 
Public Overridable Function NextNonEmptyColumnInRow( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As Integer
'使用法
 
Dim instance As BaseSheetStyleModel
Dim row As Integer
Dim column As Integer
Dim value As Integer
 
value = instance.NextNonEmptyColumnInRow(row, column)
public virtual int NextNonEmptyColumnInRow( 
   int row,
   int column
)

パラメータ

row
行インデックス
column
検索を開始する列の1つ前の列インデックス(列0から開始する場合は-1)

戻り値の型

行内の値を含む次のセルの列インデックスを表す Integer。値を含む列がない場合は -1
次のサンプルコードは、指定した行の、スタイル設定を含む次の列のインデックスを返します。
FarPoint.Win.Spread.Model.BaseSheetStyleModel styleModel; 
FarPoint.Win.Spread.StyleInfo sInfo = new FarPoint.Win.Spread.StyleInfo(); 
int i; 
sInfo.BackColor = Color.Red; 
fpSpread1.ActiveSheet.Models.Style.SetDirectInfo(0, 0, sInfo); 
styleModel = (FarPoint.Win.Spread.Model.BaseSheetStyleModel)fpSpread1.ActiveSheet.Models.Style; 
i = styleModel.NextNonEmptyColumnInRow(0, -1)
MessageBox.Show("The next non-empty column is " + i.ToString())
Dim styleModel As FarPoint.Win.Spread.Model.BaseSheetStyleModel
Dim sInfo As New FarPoint.Win.Spread.StyleInfo
Dim i As Integer
sInfo.BackColor = Color.Red
styleModel = FpSpread1.ActiveSheet.Models.Style
FpSpread1.ActiveSheet.Models.Style.SetDirectInfo(0, 0, sInfo)
i = styleModel.NextNonEmptyColumnInRow(0, -1)
MessageBox.Show("The next non-empty column is " & i.ToString())
参照

BaseSheetStyleModel クラス
BaseSheetStyleModel メンバ

 

 


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