PowerTools SPREAD for ASP.NET 8.0J
CellType プロパティ (Column)

この列のセルのデフォルトセル型を取得または設定します。
構文
'Declaration
 
Public Property CellType As ICellType
public ICellType CellType {get; set;}

プロパティ値

この列のセルのセル型を含むICellTypeオブジェクト
この例では、アクティブシートのColumnオブジェクトとButtonCellTypeオブジェクトを作成します。ButtonCellTypeオブジェクトをColumnオブジェクトのCellTypeプロパティに割り当てて、アクティブシートの先頭列のすべてのセルをコマンドボタン型セルに設定します。
FarPoint.Web.Spread.Column mycol;
FarPoint.Web.Spread.ButtonCellType mycell = new FarPoint.Web.Spread.ButtonCellType();
mycol = FpSpread1.ActiveSheetView.Columns[0];
mycol.CellType = mycell;
Dim mycol As FarPoint.Web.Spread.Column
Dim mycell As New FarPoint.Web.Spread.ButtonCellType()
mycol = FpSpread1.ActiveSheetView.Columns(0)
mycol.CellType = mycell
参照

Column クラス
Column メンバ
ICellType インタフェース

 

 


© 2003-2015, GrapeCity inc. All rights reserved.