MESCIUS SPREAD for Windows Forms 15.0J
Editor プロパティ (Cell)
使用例 

セルのエディタを取得または設定します。
構文
'宣言
 
Public Property Editor As IEditor
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 メンバ

 

 


© MESCIUS inc. All rights reserved.