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

値の書式設定に使用する書式文字列を取得または設定します。
構文
'Declaration
 
Public Overridable Property FormatString As String
public virtual string FormatString {get; set;}

プロパティ値

書式文字列を含むString
解説

標準型セルの値は、文字列、数値、DateTimeオブジェクトのいずれかを設定できます。

サポートされている書式は、.NET Frameworkの数値書式と日付時刻書式です。

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
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
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = g
FpSpread1.ActiveSheetView.Cells(0, 0).Value = DateTime.Now
参照

GeneralCellType クラス
GeneralCellType メンバ

 

 


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