FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > Column クラス : Formatter プロパティ |
'Declaration Public Property Formatter As IFormatter
'使用法 Dim instance As Column Dim value As IFormatter instance.Formatter = value value = instance.Formatter
public IFormatter Formatter {get; set;}
このプロパティの設定は、StyleNameプロパティを使用してセルに名前付きスタイルが割り当てられていて、その名前付きスタイルが使用フォーマッタを設定する場合、オーバーライドできます。
このプロパティが使用できるのは実行時のみです。
FarPoint.Win.Spread.Column col;
FarPoint.Win.Spread.CellType.CheckBoxCellType ck = new FarPoint.Win.Spread.CellType.CheckBoxCellType();
col = fpSpread1.ActiveSheet.Columns[0];
col.Editor = ck;
col.Formatter = ck;
col.Renderer = ck;
Dim col As FarPoint.Win.Spread.Column Dim ck As New FarPoint.Win.Spread.CellType.CheckBoxCellType() col = FpSpread1.ActiveSheet.Columns(0) col.Editor = ck col.Formatter = ck col.Renderer = ck