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


セルのエディタを取得または設定します。
構文
'Declaration
 
Public Property Editor As IEditor
'使用法
 
Dim instance As Cell
Dim value As IEditor
 
instance.Editor = value
 
value = instance.Editor
public IEditor Editor {get; set;}

プロパティ値

エディタを含むIEditorオブジェクト
解説

このプロパティの設定は、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 メンバ

 

 


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