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