MESCIUS SPREAD for Windows Forms 15.0J
ParseFormatInfo プロパティ
使用例 

セルの解析された書式を取得または設定します。
構文
'宣言
 
Public Property ParseFormatInfo As IFormatProvider
public IFormatProvider ParseFormatInfo {get; set;}

プロパティ値

書式の制御方法を含む IFormatProvider オブジェクト
解説
このプロパティを使用できるのはGeneralCellType型のセルのみです。
使用例
次のサンプルコードは、セルデータの解析方法を示します。
FarPoint.Win.Spread.CellType.GeneralCellType gct = new FarPoint.Win.Spread.CellType.GeneralCellType();
gct.DateTimeFormat = FarPoint.Win.Spread.CellType.DateTimeFormat.LongDate;
fpSpread1.ActiveSheet.Cells[0, 0].CellType = gct;
System.Globalization.CultureInfo ci = new System.Globalization.CultureInfo("en-us", true);
fpSpread1.ActiveSheet.Cells[0, 0].Value = System.DateTime.Now;
fpSpread1.ActiveSheet.Cells[0, 0].ParseFormatInfo = ci;
Dim gct As New FarPoint.Win.Spread.CellType.GeneralCellType
gct.DateTimeFormat = FarPoint.Win.Spread.CellType.DateTimeFormat.LongDate
fpSpread1.ActiveSheet.Cells(0, 0).CellType = gct
Dim ci As New System.Globalization.CultureInfo("en-us", True)
fpSpread1.ActiveSheet.Cells(0, 0).Value = Now
fpSpread1.ActiveSheet.Cells(0, 0).ParseFormatInfo = ci
参照

Cell クラス
Cell メンバ
SetParseFormat メソッド
GetParseFormat メソッド
IParseFormatSupport インタフェース
ParseFormatString プロパティ

 

 


© MESCIUS inc. All rights reserved.