FarPoint.Win.Spread アセンブリ > FarPoint.Win.Spread.CellType 名前空間 : EditorValue 列挙体 |
'宣言
Public Enum EditorValue Inherits System.Enum
public enum EditorValue : System.Enum
メンバ | 解説 |
---|---|
Index | [1] 選択された項目のインデックスをモデルに書き込みます。 |
ItemData | [2] 選択された項目の対応するデータをモデルに書き込みます。 |
String | [0] 選択された項目のテキスト値をモデルに書き込みます。 |
これはコンボ ボックス型セルとマルチ オプション(ラジオ ボタン)型セル用の列挙体です。これらのセル型は、選択項目として複数の値を提供します。それぞれの値はその値のインデックス番号に対応します。
FarPoint.Win.Spread.CellType.ComboBoxCellType cb = new FarPoint.Win.Spread.CellType.ComboBoxCellType(); cb.Items = new string[] {"A", "G"}; cb.ItemData = new string[] {"Alpha", "Gamma"}; cb.EditorValue = FarPoint.Win.Spread.CellType.EditorValue.Index; fpSpread1.ActiveSheet.Cells[0, 0].CellType = cb;
Dim cb As New FarPoint.Win.Spread.CellType.ComboBoxCellType cb.Items = New String() {"A", "G"} cb.ItemData = New String() {"Alpha", "Gamma"} cb.EditorValue = FarPoint.Win.Spread.CellType.EditorValue.Index fpSpread1.ActiveSheet.Cells(0, 0).CellType = cb
System.Object
System.ValueType
System.Enum
FarPoint.Win.Spread.CellType.EditorValue