PowerTools SPREAD for Windows Forms 8.0J
DateTimeEditorValue 列挙体


日付時刻型セルのデータモデルに何が書き出されるかを指定します。
構文
'Declaration
 
Public Enum DateTimeEditorValue 
   Inherits System.Enum
'使用法
 
Dim instance As DateTimeEditorValue
public enum DateTimeEditorValue : System.Enum 
メンバ
メンバ説明
DateSerial[2] セルの日付のシリアル値(倍精度浮動小数点数)をモデルに書き込みます。
DateTime[1] セルの DateTime オブジェクトをモデルに書き込みます。
String[0] セルのテキスト値をモデルに書き込みます。
次のサンプルコードは、モデルにシリアル値を書き込みます。
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
継承階層

System.Object
   System.ValueType
      System.Enum
         FarPoint.Win.Spread.CellType.DateTimeEditorValue

参照

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

開発者ガイド

日付時刻型セル

 

 


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