FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.Model 名前空間 > BaseSheetStyleModel クラス : SetDirectAltRowInfo メソッド |
'Declaration Public Overridable Sub SetDirectAltRowInfo( _ ByVal index As Integer, _ ByVal info As StyleInfo _ )
'使用法 Dim instance As BaseSheetStyleModel Dim index As Integer Dim info As StyleInfo instance.SetDirectAltRowInfo(index, info)
この実装は何もしません。
スタイルモデルにおける「直接」とは、「複合していない」または「継承されていない」ことを意味します。このメソッド(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)