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

この列のセルのデフォルトフォーマッタを取得または設定します。
構文
'Declaration
 
Public Property Formatter As IFormatter
public IFormatter Formatter {get; set;}

プロパティ値

この列のセルのフォーマッタを含むIFormatterオブジェクト
この例では、ColumnオブジェクトとIFormatterオブジェクトを作成します。IFormatterオブジェクトはCurrencyFormatterとして宣言し、Columnオブジェクトのフォーマッタとして使用します。これを検証するため、Columnオブジェクトのフォーマッタをテキストボックスに返します。
FarPoint.Web.Spread.Column mycol;
FarPoint.Web.Spread.Renderer.IFormatter formatter;
mycol = FpSpread1.ActiveSheetView.Columns[0];
formatter = new FarPoint.Web.Spread.Renderer.CurrencyFormatter();
mycol.Formatter = formatter;
TextBox1.Text = Convert.ToString(mycol.Formatter);
Dim mycol As FarPoint.Web.Spread.Column
Dim formatter As FarPoint.Web.Spread.Renderer.IFormatter
mycol = FpSpread1.ActiveSheetView.Columns(0)
formatter = New FarPoint.Web.Spread.Renderer.CurrencyFormatter()
mycol.Formatter = formatter
TextBox1.Text = Convert.ToString(mycol.Formatter)
参照

Column クラス
Column メンバ
IFormatter インタフェース

 

 


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