FarPoint.Web.Spread 名前空間 > ComboBoxCellType クラス : CssClass プロパティ |
これは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