PowerTools SPREAD for ASP.NET 8.0J
IsDateFormat プロパティ (GeneralCellType)

使用する書式文字列が日付時刻の書式文字列であるかどうかを表すブール値を取得または設定します。
構文
'Declaration
 
Public Overridable Property IsDateFormat As Boolean
public virtual bool IsDateFormat {get; set;}

プロパティ値

isDateFormatパラメータをTrueに設定してGeneralFormatterクラスのSetFormatStringメソッドを呼び出した場合はTrue、それ以外の場合はFalse
日付時刻の場合はTrue、それ以外の場合はFalse
System.Globalization.DateTimeFormatInfo dtf = new System.Globalization.DateTimeFormatInfo();
dtf.LongDatePattern = "D";
dtf.ShortDatePattern = "M/d/yyyy";
FarPoint.Web.Spread.GeneralCellType g = new FarPoint.Web.Spread.GeneralCellType();
g.DateTimeFormat = dtf;
g.FormatString = dtf.ShortDatePattern
g.IsDateFormat = true;
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = g;
FpSpread1.ActiveSheetView.Cells[0, 0].Value = DateTime.Now;
Dim dtf As New System.Globalization.DateTimeFormatInfo
Dim b As Boolean
dtf.LongDatePattern = "D"
dtf.ShortDatePattern = "M/d/yyyy"
Dim g As New FarPoint.Web.Spread.GeneralCellType
g.DateTimeFormat = dtf
g.FormatString = dtf.ShortDatePattern
g.IsDateFormat = True
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = g
FpSpread1.ActiveSheetView.Cells(0, 0).Value = DateTime.Now
参照

GeneralCellType クラス
GeneralCellType メンバ
SetFormatString メソッド

 

 


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