PowerTools SPREAD for Windows Forms 8.0J
Formatter プロパティ (Cell)


セルのフォーマッタを取得または設定します。
構文
'Declaration
 
Public Property Formatter As IFormatter
'使用法
 
Dim instance As Cell
Dim value As IFormatter
 
instance.Formatter = value
 
value = instance.Formatter
public IFormatter Formatter {get; set;}

プロパティ値

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

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

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

次のサンプルコードは、セルのエディタ、フォーマッタ、およびレンダラを設定します。
FarPoint.Win.Spread.Cell acell;
FarPoint.Win.Spread.CellType.CheckBoxCellType cell = new FarPoint.Win.Spread.CellType.CheckBoxCellType();
acell = fpSpread1.ActiveSheet.Cells[0, 0];
acell.Editor = cell;
acell.Formatter = cell;
acell.Renderer = cell;
Dim acell As FarPoint.Win.Spread.Cell
Dim cell As New FarPoint.Win.Spread.CellType.CheckBoxCellType()
acell = FpSpread1.ActiveSheet.Cells(0, 0)
acell.Editor = cell
acell.Formatter = cell
acell.Renderer = cell
参照

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

 

 


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