FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.Model 名前空間 > DefaultSheetStyleModel クラス : GetDirectAltRowInfo メソッド |
'Declaration Public Overrides Function GetDirectAltRowInfo( _ ByVal index As Integer, _ ByVal destInfo As StyleInfo _ ) As StyleInfo
'使用法 Dim instance As DefaultSheetStyleModel Dim index As Integer Dim destInfo As StyleInfo Dim value As StyleInfo value = instance.GetDirectAltRowInfo(index, destInfo)
例外 | 説明 |
---|---|
System.IndexOutOfRangeException | 指定されたスタイルインデックスは無効です。有効な値は0からスタイルの総数までです。 |
スタイルモデルにおける「直接」とは、「複合していない」または「継承されていない」ことを意味します。このメソッド(GetDirectAltRowInfo)は、設定されている交互スタイルのプロパティを返します。この交互行スタイルは、ビューポートコントロールによって、レンダリング前に交互行スタイルとセルの複合スタイルをマージするときに使用されます。
GetDirectInfoは、指定したセル、列、または行に直接設定されているスタイルプロパティを返します。上位の階層(モデル全体など)で設定されている設定は返しません。それに対してGetCompositeInfoは、セル、列、または行を描画、編集するためのすべての設定を含む1つのStyleInfoオブジェクトに「構成」または「マージ」されたスタイルプロパティを返します。これには継承された設定も含まれます。
インデックスには0〜(AltRowCount-1)の値を指定する必要があります。
destInfoがNullの場合は、新しいStyleInfoオブジェクトが作成されて使用されます。
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())