PowerTools SPREAD for Windows Forms 8.0J
EditorValue 列挙体


複数の値の選択肢を提供する特定のセル型で、選択された項目の何がデータモデルに書き出されるかを指定します。
構文
'Declaration
 
Public Enum EditorValue 
   Inherits System.Enum
'使用法
 
Dim instance As EditorValue
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

参照

FarPoint.Win.Spread.CellType 名前空間
EditorValue プロパティ (ComboBoxCellType クラス)
EditorValue プロパティ (MultiOptionCellType クラス)

開発者ガイド

コンボボックス型セル
マルチオプション型セル

 

 


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