MESCIUS SPREAD for ASP.NET 10.0J
CssClass プロパティ (ComboBoxCellType)

グループ情報全体を、情報を一切失うことなく XML でレンダリングできるかどうかを取得します。
構文
'Declaration
 
Public Property CssClass As String
public string CssClass {get; set;}

プロパティ値

CSSクラス名を含むString
解説

これはCSS(カスケードスタイルシート)クラスの名前です。

このプロパティを設定したセル型をセルに適用すると、そのセルのCSSクラス名としてCssClassプロパティが出力され、すべてのスタイル設定がインラインスタイルとして出力されます。したがって、このプロパティを使用する場合は、該当するセルから他のカスタムスタイル設定をすべて除去する方が適切です。

規格に厳密に準拠した最良の結果を得るには、CSSクラスをheadタグの外側の、Spread HTMLコードの後に配置します。

FarPoint.Web.Spread.ComboBoxCellType cb = new FarPoint.Web.Spread.ComboBoxCellType();
FarPoint.Web.Spread.ListItem[] items = new FarPoint.Web.Spread.ListItem[2];
FarPoint.Web.Spread.ListItem item = new FarPoint.Web.Spread.ListItem();
item.Text = "A";
item.Value = "1";
items[0] = item;
item = new FarPoint.Web.Spread.ListItem();
item.Text = "B";
item.Value = "2";
items[1] = item;
cb.ListItems = items;
cb.CssClass = "CssStyle1";
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = cb;
Dim cb As New FarPoint.Web.Spread.ComboBoxCellType
Dim items(2) As FarPoint.Web.Spread.ListItem
Dim item As New FarPoint.Web.Spread.ListItem
item.Text = "A"
item.Value = "1"
items(0) = item
item = New FarPoint.Web.Spread.ListItem
item.Text = "B"
item.Value = "2"
items(1) = item
cb.ListItems = items
cb.CssClass = "CssStyle1"
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = cb
参照

ComboBoxCellType クラス
ComboBoxCellType メンバ

 

 


© MESCIUS inc. All rights reserved.