PowerTools SPREAD for Windows Forms 8.0J
ItemData プロパティ (MultiOptionCellType)


オプション リストの項目に対応するデータを取得または設定します。
構文
'Declaration
 
Public Property ItemData As String()
'使用法
 
Dim instance As MultiOptionCellType
Dim value() As String
 
instance.ItemData = value
 
value = instance.ItemData
public string[] ItemData {get; set;}

プロパティ値

項目に対応するデータを含む String の配列
次のサンプルコードは、マルチオプションボタンで使用する項目のリストと対応するデータを指定します。
FarPoint.Win.Spread.CellType.MultiOptionCellType multcell = new FarPoint.Win.Spread.CellType.MultiOptionCellType(); 
multcell.Items = new String[] {"Carbon", "Oxygen", "Hydrogen"}; 
multcell.ItemData = new String[] {"C", "O2", "H"};
multcell.Orientation = FarPoint.Win.RadioOrientation.Vertical; 
fpSpread1.ActiveSheet.Cells[0, 0].CellType = multcell;
Dim multcell As New FarPoint.Win.Spread.CellType.MultiOptionCellType()
multcell.Items = new String() {"Carbon", "Oxygen", "Hydrogen"}
multcell.ItemData = new String() {"C", "O2", "H"}
multcell.Orientation = FarPoint.Win.RadioOrientation.Vertical
FpSpread1.ActiveSheet.Cells(0, 0).CellType = multcell
参照

MultiOptionCellType クラス
MultiOptionCellType メンバ

 

 


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