FarPoint.Web.Spread 名前空間 > StyleInfo クラス : Formatter プロパティ |
'Declaration
Public Overridable Property Formatter As IFormatter
public virtual IFormatter Formatter {get; set;}
このプロパティが使用できるのは実行時のみです。
このプロパティの設定は、StyleNameプロパティを使用してセルに名前付きスタイルが割り当てられていて、その名前付きスタイルが、使用するフォーマッタを設定する場合、オーバーライドできます。
FarPoint.Web.Spread.StyleInfo copy = new FarPoint.Web.Spread.StyleInfo("DataAreaDefault"); copy.Border = new FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.DarkBlue); copy.CellType = new FarPoint.Web.Spread.CheckBoxCellType(); FarPoint.Web.Spread.StyleInfo si = new FarPoint.Web.Spread.StyleInfo(copy); FarPoint.Web.Spread.Renderer.IFormatter f; f = si.Formatter; Response.Write("The formatter for the style is a " + Convert.ToString(f)); FpSpread1.ActiveSheetView.DefaultStyle = si;
Dim copy As New FarPoint.Web.Spread.StyleInfo("DataAreaDefault") copy.Border = New FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.DarkBlue) copy.CellType = New FarPoint.Web.Spread.CheckBoxCellType Dim si As New FarPoint.Web.Spread.StyleInfo(copy) Dim f As FarPoint.Web.Spread.Renderer.IFormatter f = si.Formatter Response.Write("The formatter for the style is a " & Convert.ToString(f)) FpSpread1.ActiveSheetView.DefaultStyle = si