FarPoint.Web.Spread.Model 名前空間 > BaseSheetStyleModel クラス : GetDirectInfo メソッド |
Spread は、複合したスタイル設定を使用してスプレッドシートを描画します。たとえばセルの場合は、セルの列および行のスタイル設定とセル独自の設定が確認されます。
このメソッドは、指定したオブジェクトの直接設定を取得するときに使用します。SetDirectInfo メソッドは、オブジェクトの直接設定を設定するときに使用します。
直接セル スタイルは直接行スタイルを、直接行スタイルは直接列スタイルを、直接列スタイルはモデル デフォルト スタイルをオーバーライドします。直接行スタイルでは列を表すために -1を、直接列スタイルでは行を表すために -1を、モデル デフォルト スタイルでは行と列の両方を表すために -1を使用します。
オブジェクトの複合情報を取得するには、GetCompositeInfo メソッドを使用します。
この実装は何もせずに Null を返します。
FarPoint.Web.Spread.Model.BaseSheetStyleModel bs; FarPoint.Web.Spread.StyleInfo si = new FarPoint.Web.Spread.StyleInfo(); si.CellType = new FarPoint.Web.Spread.CheckBoxCellType(); bs = (FarPoint.Web.Spread.Model.BaseSheetStyleModel)FpSpread1.ActiveSheetView.StyleModel; bs.SetDirectInfo(0, 0, si); FarPoint.Web.Spread.StyleInfo gdi; gdi = bs.GetDirectInfo(-1, -1, si); Response.Write("The cell type for the style is " + Convert.ToString(gdi.CellType));
Dim bs As FarPoint.Web.Spread.Model.BaseSheetStyleModel Dim si As New FarPoint.Web.Spread.StyleInfo si.CellType = New FarPoint.Web.Spread.CheckBoxCellType bs = FpSpread1.ActiveSheetView.StyleModel bs.SetDirectInfo(0, 0, si) Dim gdi As FarPoint.Web.Spread.StyleInfo gdi = bs.GetDirectInfo(-1, -1, si) Response.Write("The cell type for the style is " & Convert.ToString(gdi.CellType))