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

このスタイルのセル型を取得または設定します。
構文
'Declaration
 
Public Overridable Property CellType As ICellType
public virtual ICellType CellType {get; set;}

プロパティ値

このスタイルのセルのセル型を含むICellTypeオブジェクト
解説

このプロパティの設定は、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);
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)
FpSpread1.ActiveSheetView.DefaultStyle = si 
参照

StyleInfo クラス
StyleInfo メンバ

 

 


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