FarPoint.Web.Spread 名前空間 > Cell クラス : Renderer プロパティ |
このプロパティの設定は、StyleNameプロパティを使用してセルに名前付きスタイルが割り当てられていて、その名前付きスタイルが、使用するレンダラを設定する場合、オーバーライドできます。
FarPoint.Web.Spread.Cell mycell; FarPoint.Web.Spread.Renderer.CheckBoxRenderer rend = new FarPoint.Web.Spread.Renderer.CheckBoxRenderer(); FarPoint.Web.Spread.Editor.CheckBoxEditor edit = new FarPoint.Web.Spread.Editor.CheckBoxEditor(); mycell = FpSpread1.Cells[0, 0]; mycell.Renderer = rend; mycell.Editor = edit; TextBox1.Text=Convert.ToString(rend);
Dim mycell As FarPoint.Web.Spread.Cell Dim rend As New FarPoint.Web.Spread.Renderer.CheckBoxRenderer() Dim edit As New FarPoint.Web.Spread.Editor.CheckBoxEditor() mycell = FpSpread1.Cells(0, 0) mycell.Renderer = rend mycell.Editor = edit TextBox1.Text = Convert.ToString(rend)