MESCIUS SPREAD for ASP.NET 10.0J
Formatter プロパティ (Row)

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

プロパティ値

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

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

 

 


© MESCIUS inc. All rights reserved.