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


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

プロパティ値

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

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

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

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

Row クラス
Row メンバ

 

 


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