MESCIUS SPREAD for Windows Forms 15.0J
NextNonEmptyRow メソッド (BaseSheetStyleModel)
使用例 

検索を開始する行の1つ前の行インデックス(行0から開始するには-1)
指定した行インデックスより後にある最初の空でない行のインデックスを取得します。
構文
'宣言
 
Public Overridable Function NextNonEmptyRow( _
   ByVal row As Integer _
) As Integer
public virtual int NextNonEmptyRow( 
   int row
)

パラメータ

row
検索を開始する行の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.NextNonEmptyRow(0)
MessageBox.Show("The next non-empty row 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.NextNonEmptyRow(0)
MessageBox.Show("The next non-empty row is " & i.ToString())
参照

BaseSheetStyleModel クラス
BaseSheetStyleModel メンバ

 

 


© MESCIUS inc. All rights reserved.