FarPoint.Web.Spread 名前空間 > StyleInfo クラス : Renderer プロパティ |
'Declaration
Public Overridable Property Renderer As IRenderer
public virtual IRenderer Renderer {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.Renderer.IRenderer r; r = si.Renderer; Response.Write("The renderer for the style is a " + Convert.ToString(r)); 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 r As FarPoint.Web.Spread.Renderer.IRenderer r = si.Renderer Response.Write("The renderer for the style is a " & Convert.ToString(r)) FpSpread1.ActiveSheetView.DefaultStyle = si