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

設定する交互行のスタイルのインデックス(0からAltRowCount-1までの値)
スタイル情報を含むソースStyleInfoオブジェクト
モデル内に指定した交互行のスタイルを設定します。
構文
'宣言
 
Public Overridable Sub SetDirectAltRowInfo( _
   ByVal index As Integer, _
   ByVal info As StyleInfo _
) 
public virtual void SetDirectAltRowInfo( 
   int index,
   StyleInfo info
)

パラメータ

index
設定する交互行のスタイルのインデックス(0からAltRowCount-1までの値)
info
スタイル情報を含むソースStyleInfoオブジェクト
解説

この実装は何もしません。

スタイルモデルにおける「直接」とは、「複合していない」または「継承されていない」ことを意味します。このメソッド(SetDirectAltRowInfo)は、交互スタイルのプロパティを設定します。この交互スタイルは、ビューポートコントロールによって、レンダリング前に交互行スタイルとセルの複合スタイルをマージするときに使用されます。

SetDirectInfoは、セル、列、または行のその他のスタイルプロパティを直接設定します。

indexには0〜(AltRowCount-1)の値を指定する必要があります。

使用例
次のサンプルコードは、モデル内の交互行の数を設定します。
FarPoint.Win.Spread.Model.BaseSheetStyleModel styleModel;
FarPoint.Win.Spread.StyleInfo sInfo = new FarPoint.Win.Spread.StyleInfo();
sInfo.BackColor = Color.LightBlue;
styleModel = (FarPoint.Win.Spread.Model.BaseSheetStyleModel)fpSpread1.ActiveSheet.Models.Style;
styleModel.AltRowCount = 3;
styleModel.SetDirectAltRowInfo(1, sInfo);
Dim styleModel As FarPoint.Win.Spread.Model.BaseSheetStyleModel
Dim sInfo As New FarPoint.Win.Spread.StyleInfo()
sInfo.BackColor = Color.LightBlue
styleModel = fpSpread1.ActiveSheet.Models.Style
styleModel.AltRowCount = 3
styleModel.SetDirectAltRowInfo(1, sInfo)
参照

BaseSheetStyleModel クラス
BaseSheetStyleModel メンバ

 

 


© MESCIUS inc. All rights reserved.