MESCIUS SPREAD for ASP.NET 10.0J
CellType プロパティ (Row)

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

プロパティ値

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

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

 

 


© MESCIUS inc. All rights reserved.