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

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

プロパティ値

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

このプロパティの設定は、StyleNameプロパティを使用してセルに名前付きスタイルが割り当てられていて、その名前付きスタイルが使用フォーマッタを設定する場合、オーバーライドできます。

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

Cell クラス
Cell メンバ
IFormatter インタフェース
StyleName プロパティ
NamedStyle クラス

 

 


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