PowerTools SPREAD for Windows Forms 8.0J
FormatString プロパティ (GeneralCellType)


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

プロパティ値

書式を含む String
解説

標準型セルの値は文字列、数値、DateTimeオブジェクトのいずれかにすることができます。標準型セルは"r"または"R"を使用した書式文字列はサポートしていません。

サポートされている書式については、Microsoft .NET Framework SDKドキュメントのNumberFormatInfoオブジェクトとDateTimeFormatInfoオブジェクトを参照してください。これらの書式についての解説は、Microsoft .NET Framework開発者ガイドの「数値書式」と「日付と時刻の書式」にあります。

次のサンプルコードは、日付値の書式設定に使用する書式文字列を指定します。
FarPoint.Win.Spread.CellType.GeneralCellType genlcell = new FarPoint.Win.Spread.CellType.GeneralCellType();
genlcell.FormatString = "dd/MM/yyyy";
genlcell.IsDateFormat = true;
fpSpread1.ActiveSheet.Cells[0, 0].CellType = genlcell;
fpSpread1.ActiveSheet.Cells[0, 0].Value = DateTime.Now;
Dim genlcell As New FarPoint.Win.Spread.CellType.GeneralCellType()
genlcell.FormatString = "dd/MM/yyyy"
genlcell.IsDateFormat = True
FpSpread1.ActiveSheet.Cells(0, 0).CellType = genlcell
FpSpread1.ActiveSheet.Cells(0, 0).Value = DateTime.Now
参照

GeneralCellType クラス
GeneralCellType メンバ
SetFormatString メソッド
数値書式指定文字列
日付と時刻の書式指定文字列
NumberFormatInfo オブジェクト
DateTimeFormatInfo オブジェクト

 

 


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