MESCIUS SPREAD for ASP.NET 10.0J
Editor プロパティ (StyleInfo)

このスタイルのセルのエディタを取得または設定します。
構文
'Declaration
 
Public Overridable Property Editor As IEditor
public virtual IEditor Editor {get; set;}

プロパティ値

このスタイルのセルのエディタを含むIEditorオブジェクト
解説

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

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

この例では、スタイルのエディタを返します。
FarPoint.Web.Spread.StyleInfo copy = new FarPoint.Web.Spread.StyleInfo("DataAreaDefault");
copy.Border = new FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.DarkBlue);
copy.CellType = new FarPoint.Web.Spread.CheckBoxCellType();
FarPoint.Web.Spread.StyleInfo si = new FarPoint.Web.Spread.StyleInfo(copy);
FarPoint.Web.Spread.Editor.IEditor ed;
ed = si.Editor;
Response.Write("The editor for the style is a " + Convert.ToString(ed));
FpSpread1.ActiveSheetView.DefaultStyle = si; 
Dim copy As New FarPoint.Web.Spread.StyleInfo("DataAreaDefault")
copy.Border = New FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.DarkBlue)
copy.CellType = New FarPoint.Web.Spread.CheckBoxCellType
Dim si As New FarPoint.Web.Spread.StyleInfo(copy)
Dim ed As FarPoint.Web.Spread.Editor.IEditor
ed = si.Editor
Response.Write("The editor for the style is a " & Convert.ToString(ed))
FpSpread1.ActiveSheetView.DefaultStyle = si 
参照

StyleInfo クラス
StyleInfo メンバ
Formatter プロパティ
Renderer プロパティ

 

 


© MESCIUS inc. All rights reserved.