【セル型】 常にコンボボックスを表示した状態を維持したい
対象製品
SPREAD for .NET 2.5J Web Forms Edition
詳細
コンボボックス型セルのShowButtonプロパティをTrueに設定します。
【VB サンプルコード】
【C# サンプルコード】
【VB サンプルコード】
Dim cb As New FarPoint.Web.Spread.ComboBoxCellType(New String() {"One", "Two", "Three"})
cb.ShowButton = True
'1列目に設定
FpSpread1.ActiveSheetView.Columns(0).CellType = cb
cb.ShowButton = True
'1列目に設定
FpSpread1.ActiveSheetView.Columns(0).CellType = cb
【C# サンプルコード】
FarPoint.Web.Spread.ComboBoxCellType cb=new FarPoint.Web.Spread.ComboBoxCellType(new string[]{"One","Two","Three"});
cb.ShowButton = true;
//1列目に設定
FpSpread1.ActiveSheetView.Columns[0].CellType = cb;
cb.ShowButton = true;
//1列目に設定
FpSpread1.ActiveSheetView.Columns[0].CellType = cb;
キーワード
外観 クライアント側スクリプト セル型
この文書は、以前は次のFAQ IDで公開されていました : 9132