PowerTools SPREAD for Windows Forms 8.0J
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

参照

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

開発者ガイド

日付時刻型セル
標準型セル

 

 


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