PowerTools SPREAD for Windows Forms 8.0J
GetDirectAltRowInfo メソッド (ISheetStyleModel)


取得する交互行のスタイルのインデックス (0からAltRowCount-1までの値)
スタイルの構成に使用するスタイルセット(StyleInfoオブジェクト)。destInfoがNullの場合は、新しいStyleInfoが作成されて使用されます。
モデル内の指定した交互行のスタイルを取得します。
構文
'Declaration
 
Function GetDirectAltRowInfo( _
   ByVal index As Integer, _
   ByVal destInfo As StyleInfo _
) As StyleInfo
'使用法
 
Dim instance As ISheetStyleModel
Dim index As Integer
Dim destInfo As StyleInfo
Dim value As StyleInfo
 
value = instance.GetDirectAltRowInfo(index, destInfo)
StyleInfo GetDirectAltRowInfo( 
   int index,
   StyleInfo destInfo
)

パラメータ

index
取得する交互行のスタイルのインデックス (0からAltRowCount-1までの値)
destInfo
スタイルの構成に使用するスタイルセット(StyleInfoオブジェクト)。destInfoがNullの場合は、新しいStyleInfoが作成されて使用されます。

戻り値の型

スタイル情報を含むStyleInfoオブジェクト
解説

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

GetDirectInfoは、指定したセル、列、または行に直接設定されているスタイルプロパティを返します。上位の階層(モデル全体など)で設定されている設定は返しません。それに対してGetCompositeInfoは、セル、列、または行を描画、編集するためのすべての設定を含む1つのStyleInfoオブジェクトに「構成」または「マージ」されたスタイルプロパティを返します。これには継承された設定も含まれます。

次のサンプルコードは、セルの交互行情報を設定して返します。
FarPoint.Win.Spread.Model.ISheetStyleModel ssm;
FarPoint.Win.Spread.NamedStyle ns = new FarPoint.Win.Spread.NamedStyle("StyleData");
FarPoint.Win.Spread.StyleInfo si;
ssm = (FarPoint.Win.Spread.Model.ISheetStyleModel)fpSpread1.ActiveSheet.Models.Style;
ns.BackColor = Color.LightBlue;
fpSpread1.NamedStyles.Add(ns);
ssm.SetDirectAltRowInfo(0, ns);
si = ssm.GetDirectAltRowInfo(0, null);
label1.Text = "The backcolor of the first alternating row is " + si.BackColor.ToString();
Dim ssm As FarPoint.Win.Spread.Model.ISheetStyleModel
Dim ns As New FarPoint.Win.Spread.NamedStyle("StyleData")
Dim si As FarPoint.Win.Spread.StyleInfo
ssm = FpSpread1.ActiveSheet.Models.Style
ns.BackColor = Color.LightBlue
FpSpread1.NamedStyles.Add(ns)
ssm.SetDirectAltRowInfo(0, ns)
si = ssm.GetDirectAltRowInfo(0, Nothing)
Label1.Text = "The backcolor of the first alternating row is " & si.BackColor.ToString()
参照

ISheetStyleModel インタフェース
ISheetStyleModel メンバ

 

 


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