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

取得する交互行のスタイルのインデックス (0からAltRowCount-1までの値)
スタイルの構成に使用するStyleInfoオブジェクト
モデル内の指定した交互行のスタイル情報を取得します。
構文
'Declaration
 
Public Overridable Function GetDirectAltRowInfo( _
   ByVal index As Integer, _
   ByVal destInfo As StyleInfo _
) As StyleInfo
public virtual StyleInfo GetDirectAltRowInfo( 
   int index,
   StyleInfo destInfo
)

パラメータ

index
取得する交互行のスタイルのインデックス (0からAltRowCount-1までの値)
destInfo
スタイルの構成に使用するStyleInfoオブジェクト

戻り値の型

この実装は何もせずにNullを返します。
解説

Spread は、セルを描画する直前に交互行スタイルとセルの複合スタイルをマージします。

この実装は何もせずに Null を返します。

次のサンプルコードは、スタイルの交互行の背景色を設定します。
FarPoint.Web.Spread.Model.BaseSheetStyleModel bs;
bs = (FarPoint.Web.Spread.Model.BaseSheetStyleModel)FpSpread1.ActiveSheetView.StyleModel;
FarPoint.Web.Spread.StyleInfo si = new FarPoint.Web.Spread.StyleInfo();
si.BackColor = Color.Yellow;
bs.SetDirectAltRowInfo(0, si);

si = bs.GetDirectAltRowInfo(0, si);
Response.Write(si.BackColor.ToString());
Dim bs As FarPoint.Web.Spread.Model.BaseSheetStyleModel
bs = FpSpread1.ActiveSheetView.StyleModel
Dim si As New FarPoint.Web.Spread.StyleInfo
si.BackColor = Color.Yellow
bs.SetDirectAltRowInfo(0, si)

si = bs.GetDirectAltRowInfo(0, si)
Response.Write(si.BackColor.ToString())
参照

BaseSheetStyleModel クラス
BaseSheetStyleModel メンバ
SetDirectAltRowInfo メソッド
AltRowCount プロパティ

 

 


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