FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.CellType 名前空間 > MultiOptionCellType クラス : ItemData プロパティ |
'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;}
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