PowerTools SPREAD for Windows Forms 8.0J
ParseFormatString プロパティ


セルの解析済み書式文字列を取得または設定します。
構文
'Declaration
 
Public Property ParseFormatString As String
'使用法
 
Dim instance As Cell
Dim value As String
 
instance.ParseFormatString = value
 
value = instance.ParseFormatString
public string ParseFormatString {get; set;}

プロパティ値

解析済み書式文字列を含む String
解説
このプロパティを使用できるのはGeneralCellType型のセルのみです。
次のサンプルコードは、セルデータの解析方法を示します。
FarPoint.Win.Spread.CellType.GeneralCellType gct = new FarPoint.Win.Spread.CellType.GeneralCellType();
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].ParseFormatString = ci.DateTimeFormat.ToString();
Dim gct As New FarPoint.Win.Spread.CellType.GeneralCellType
Dim ci As New System.Globalization.CultureInfo("en-us", True)
FpSpread1.ActiveSheet.Cells(0, 0).CellType = gct
FpSpread1.ActiveSheet.Cells(0, 0).Value = Now
FpSpread1.ActiveSheet.Cells(0, 0).ParseFormatString = ci.DateTimeFormat.ToString()
参照

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

 

 


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