PowerTools SPREAD for ASP.NET 8.0J
Formatter プロパティ (StyleInfo)

使用するフォーマッタを取得または設定します。
構文
'Declaration
 
Public Overridable Property Formatter As IFormatter
public virtual IFormatter Formatter {get; set;}

プロパティ値

このスタイルのセルのフォーマッタを含むIFormatterオブジェクト
解説

このプロパティが使用できるのは実行時のみです。

このプロパティの設定は、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 
参照

StyleInfo クラス
StyleInfo メンバ
Editor プロパティ
Renderer プロパティ

 

 


© 2003-2015, GrapeCity inc. All rights reserved.