PowerTools SPREAD for Windows Forms 8.0J
EditorValue プロパティ (ComboBoxCellType)


表示下のデータモデルに書き込まれている値を取得または設定します。
構文
'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;}

プロパティ値

データモデルに書き込まれる値を決定するEditorValue設定
次のサンプル コードは、セルで選択された項目についてデータ モデルに何が書き出されるかを指定します。
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
参照

ComboBoxCellType クラス
ComboBoxCellType メンバ
SetEditorValue メソッド

開発者ガイド

コンボボックス型セル

 

 


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