PowerTools SPREAD for ASP.NET 8.0J
NextNonEmptyColumnInRow メソッド (BaseSheetStyleModel)

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

パラメータ

row
行インデックス
column
検索の開始位置の直前の列を表すインデックス(列0から開始するには -1 を使用)

戻り値の型

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

BaseSheetStyleModel クラス
BaseSheetStyleModel メンバ

 

 


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