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


表示下のデータモデルに書き込まれている値を取得または設定します。
構文
'Declaration
 
Public Property EditorValue As DateTimeEditorValue
'使用法
 
Dim instance As DateTimeCellType
Dim value As DateTimeEditorValue
 
instance.EditorValue = value
 
value = instance.EditorValue
public DateTimeEditorValue EditorValue {get; set;}

プロパティ値

日付時刻型セル値のデータモデルに使用するデータの種類を決定するDateTimeEditorValue設定
解説
セルの Value プロパティを設定する場合は、Value プロパティが、このプロパティで指定された型と一致するようにしてください。
次のサンプルコードは、モデルにシリアル値を書き込みます。
FarPoint.Win.Spread.CellType.DateTimeCellType dt = new FarPoint.Win.Spread.CellType.DateTimeCellType();
dt.EditorValue = FarPoint.Win.Spread.CellType.DateTimeEditorValue.DateSerial;
fpSpread1.ActiveSheet.Cells[0, 0].CellType = dt;
Dim dt As New FarPoint.Win.Spread.CellType.DateTimeCellType
dt.EditorValue = FarPoint.Win.Spread.CellType.DateTimeEditorValue.DateSerial
FpSpread1.ActiveSheet.Cells(0, 0).CellType = dt
参照

DateTimeCellType クラス
DateTimeCellType メンバ
DateTimeEditorValue 列挙体
SetEditorValue メソッド

 

 


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