PowerTools SPREAD for Windows Forms 8.0J
SetDirectAltRowInfo メソッド (DefaultSheetStyleModel)


設定する交互行のスタイルのインデックス
設定するStyleオブジェクト
モデル内に指定した交互行のスタイルを設定します。
構文
'Declaration
 
Public Overrides Sub SetDirectAltRowInfo( _
   ByVal index As Integer, _
   ByVal info As StyleInfo _
) 
'使用法
 
Dim instance As DefaultSheetStyleModel
Dim index As Integer
Dim info As StyleInfo
 
instance.SetDirectAltRowInfo(index, info)
public override void SetDirectAltRowInfo( 
   int index,
   StyleInfo info
)

パラメータ

index
設定する交互行のスタイルのインデックス
info
設定するStyleオブジェクト
例外
例外説明
System.IndexOutOfRangeException指定されたスタイルインデックスは無効です。有効な値は0からスタイルの総数までです。
解説

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

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

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

次のサンプルコードでは、このメンバを使用して、最初の交互行のスタイル情報を返しています。
FarPoint.Win.Spread.Model.DefaultSheetStyleModel defstyleModel = new FarPoint.Win.Spread.Model.DefaultSheetStyleModel();
FarPoint.Win.Spread.StyleInfo sInfo = new FarPoint.Win.Spread.StyleInfo();
FarPoint.Win.Spread.StyleInfo composite = new FarPoint.Win.Spread.StyleInfo();
defstyleModel = (FarPoint.Win.Spread.Model.DefaultSheetStyleModel)fpSpread1.ActiveSheet.Models.Style;
sInfo.BackColor = Color.LightBlue;
defstyleModel.SetDirectAltRowInfo(0, sInfo);
composite = defstyleModel.GetDirectAltRowInfo(0, sInfo);
listBox1.Items.Add(composite.BackColor.ToString());
Dim defstyleModel As New FarPoint.Win.Spread.Model.DefaultSheetStyleModel()
Dim sInfo As New FarPoint.Win.Spread.StyleInfo()
Dim composite As New FarPoint.Win.Spread.StyleInfo()
defstyleModel = FpSpread1.ActiveSheet.Models.Style
sInfo.BackColor = Color.LightBlue
defstyleModel.SetDirectAltRowInfo(0, sInfo)
composite = defstyleModel.GetDirectAltRowInfo(0, sInfo)
ListBox1.Items.Add(composite.BackColor.ToString())
参照

DefaultSheetStyleModel クラス
DefaultSheetStyleModel メンバ

 

 


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