FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.CellType 名前空間 > ComboBoxCellType クラス : EditorValue プロパティ |
'Declaration Public Property EditorValue As EditorValue
'使用法 Dim instance As ComboBoxCellType Dim value As EditorValue instance.EditorValue = value value = instance.EditorValue
public EditorValue EditorValue {get; set;}
FarPoint.Win.Spread.CellType.ComboBoxCellType cb = new FarPoint.Win.Spread.CellType.ComboBoxCellType(); cb.Items = new string[]{"One", "Two", "Three", "Four"}; cb.EditorValue = FarPoint.Win.Spread.CellType.EditorValue.String;
Dim cb As New FarPoint.Win.Spread.CellType.ComboBoxCellType cb.Items = New String() {"One", "Two", "Three", "Four"} cb.EditorValue = FarPoint.Win.Spread.CellType.EditorValue.String