public string FormatString {get; set;}
'Declaration
Public Property FormatString As String
'使用法
Dim instance As GcTextBoxCellType
Dim value As String
instance.FormatString = value
value = instance.FormatString
プロパティ値
コントロールへのテキストの入力書式を指定する文字列。
デフォルト値は
System.String.Emptyです。
次のサンプルコードは、FormatString プロパティを使用します。
GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType inputcell = new GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType();
//Symbols
inputcell.FormatString = "@";
fpSpread1.Sheets[0].Cells[0, 0].CellType = inputcell;
Dim inputcell As New GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType()
'Symbols
inputcell.FormatString = "@"
fpSpread1.Sheets[0].Cells[0, 0].CellType = inputcell