MESCIUS SPREAD for Windows Forms 15.0J
ItemData プロパティ (ListBoxCellType)
使用例 

リスト ボックスの項目に対応するデータを取得または設定します。
構文
'宣言
 
Public Property ItemData As String()
public string[] ItemData {get; set;}

プロパティ値

項目に対応するデータを含む String の配列
使用例
次のサンプル コードは、リスト ボックス型セルを作成して外観を指定します。
FarPoint.Win.Spread.CellType.ListBoxCellType listbx = new FarPoint.Win.Spread.CellType.ListBoxCellType();
listbx.ImageList = ImageList1;
listbx.ItemData = new string[] { 
        "One",
        "Two",
        "Three"};
listbx.Items = new string[] {
        "One",
        "Two",
        "Three"};
listbx.ItemHeight = 40;
fpSpread1.ActiveSheet.Cells[0, 0].CellType = listbx;
Dim listbx As New FarPoint.Win.Spread.CellType.ListBoxCellType
listbx.ImageList = ImageList1
listbx.ItemData = New String() {"One", "Two", "Three"}
listbx.Items = New String() {"One", "Two", "Three"}
listbx.ItemHeight = 40
FpSpread1.ActiveSheet.Cells(0, 0).CellType = listbx 
参照

ListBoxCellType クラス
ListBoxCellType メンバ

 

 


© MESCIUS inc. All rights reserved.