FarPoint.Web.Spread 名前空間 > StyleInfo クラス : Editor プロパティ |
'Declaration
Public Overridable Property Editor As IEditor
public virtual IEditor Editor {get; set;}
このプロパティは実行時のみ使用できます。
このプロパティの設定は、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