FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.Model 名前空間 > BaseSheetStyleModel クラス : SetDirectInfo メソッド |
'Declaration Public Overridable Sub SetDirectInfo( _ ByVal row As Integer, _ ByVal column As Integer, _ ByVal info As StyleInfo _ )
'使用法 Dim instance As BaseSheetStyleModel Dim row As Integer Dim column As Integer Dim info As StyleInfo instance.SetDirectInfo(row, column, info)
この実装は何もしません。
スタイルモデルにおける「直接」とは、「複合していない」または「継承されていない」ことを意味します。このメソッド(SetDirectInfo)は、指定したセル、列、または行のスタイルプロパティを直接設定します。SetDirectAltRowInfoは交互行スタイルの情報を設定します。
スタイルの優先順位から見ると、直接セルスタイルは直接行スタイルを、直接行スタイルは直接列スタイルを、直接列スタイルはモデルデフォルトスタイルをオーバーライドします。
設定可能な値から見ると、直接行スタイルでは列全体に対して-1を、直接列スタイルでは行全体に対して-1を、モデルデフォルトスタイルではすべての行と列に対して-1を使用します。
FarPoint.Win.Spread.Model.BaseSheetStyleModel styleModel;
FarPoint.Win.Spread.StyleInfo sInfo = new FarPoint.Win.Spread.StyleInfo();
sInfo.BackColor = Color.Red;
styleModel = (FarPoint.Win.Spread.Model.BaseSheetStyleModel)fpSpread1.ActiveSheet.Models.Style;
styleModel.SetDirectInfo(0, 0, sInfo);
Dim styleModel As FarPoint.Win.Spread.Model.BaseSheetStyleModel Dim sInfo As New FarPoint.Win.Spread.StyleInfo() sInfo.BackColor = Color.Red styleModel = FpSpread1.ActiveSheet.Models.Style styleModel.SetDirectInfo(0, 0, sInfo)