FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.CellType 名前空間 > GeneralCellType クラス : FormatString プロパティ |
'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;}
標準型セルの値は文字列、数値、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 オブジェクト