FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.CellType 名前空間 : DateTimeFormat 列挙体 |
'Declaration Public Enum DateTimeFormat Inherits System.Enum
'使用法 Dim instance As DateTimeFormat
public enum DateTimeFormat : System.Enum
メンバ | 説明 |
---|---|
LongDate | 日付の長い形式を使用します。 |
LongDateWithTime | 日付と時刻の長い形式を使用します。 |
ShortDate | 日付の短い形式を使用します。 |
ShortDateWithTime | 日付と時刻の短い形式を使用します。 |
TimeOnly | 時刻のみを使用します(日付なし)。 |
UserDefined | ユーザー定義の日付と時刻の書式を使用します。 |
FarPoint.Win.Spread.CellType.DateTimeCellType dattimct = new FarPoint.Win.Spread.CellType.DateTimeCellType(); System.DateTime spectime = new System.DateTime(2003, 1, 7, 10, 10, 5); dattimct.DateTimeFormat = FarPoint.Win.Spread.CellType.DateTimeFormat.ShortDateWithTime; fpSpread1.ActiveSheet.Cells[0, 0].CellType = dattimct; fpSpread1.ActiveSheet.Cells[0, 0].Value = spectime; fpSpread1.ActiveSheet.Columns[0].Width = 200;
Dim dattimct As New FarPoint.Win.Spread.CellType.DateTimeCellType() Dim spectime As New System.DateTime(2003, 1, 7, 10, 10, 5) dattimct.DateTimeFormat = FarPoint.Win.Spread.CellType.DateTimeFormat.ShortDateWithTime FpSpread1.ActiveSheet.Cells(0, 0).CellType = dattimct FpSpread1.ActiveSheet.Cells(0, 0).Value = spectime FpSpread1.ActiveSheet.Columns(0).Width = 200
System.Object
System.ValueType
System.Enum
FarPoint.Win.Spread.CellType.DateTimeFormat