【セル型】 常にコンボボックスを表示した状態を維持したい

文書番号 : 21808     文書種別 : 使用方法     最終更新日 : 2006/06/23
文書を印刷する
対象製品
SPREAD for .NET 2.5J Web Forms Edition
詳細
コンボボックス型セルのShowButtonプロパティをTrueに設定します。

【VB サンプルコード】
    Dim cb As New FarPoint.Web.Spread.ComboBoxCellType(New String() {"One", "Two", "Three"})
    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;
キーワード
外観 クライアント側スクリプト セル型

この文書は、以前は次のFAQ IDで公開されていました : 9132