FarPoint.Win.Spread アセンブリ > FarPoint.Win.Spread.CellType 名前空間 : DateTimeEditorValue 列挙体 |
'宣言
Public Enum DateTimeEditorValue Inherits System.Enum
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