PowerTools SPREAD for ASP.NET 8.0J
ListBoxCellType コンストラクタ()

新しいリスト ボックス型セルを作成します。
構文
'Declaration
 
Public Function New()
public ListBoxCellType()
この例では、リストボックス型のセル型を作成し、リストの項目の配列を設定します。次に、選択した項目の背景色と前景色を設定し、このオブジェクトをシートの先頭セルに割り当てます。
FarPoint.Web.Spread.ListBoxCellType lbcell = new FarPoint.Web.Spread.ListBoxCellType();
lbcell.Items = new String[] {"Carbon", "Oxygen", "Hydrogen"};
lbcell.SelectedBackColor = Color.Yellow;
lbcell.SelectedForeColor = Color.DarkBlue;
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = lbcell;
FpSpread1.ActiveSheetView.Rows[0].Height = 140;
Dim lbcell As New FarPoint.Web.Spread.ListBoxCellType()
lbcell.Items = New String() {"Carbon", "Oxygen", "Hydrogen"}
lbcell.SelectedBackColor = Color.Yellow
lbcell.SelectedForeColor = Color.DarkBlue
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = lbcell
FpSpread1.ActiveSheetView.Rows(0).Height = 140
参照

ListBoxCellType クラス
ListBoxCellType メンバ
オーバーロード一覧

 

 


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