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


入力された文字をフィールドの設定に従って自動的に変換するかどうかを取得または設定します。
構文
'Declaration
 
Public Property AutoConvert As Boolean
'使用法
 
Dim instance As GcTextBoxCellType
Dim value As Boolean
 
instance.AutoConvert = value
 
value = instance.AutoConvert
public bool AutoConvert {get; set;}

プロパティ値

説明
True 文字を自動変換します。
False 文字の自動変換をしません。
既定値はTrueです。
解説

AutoConvert プロパティを true に設定すると、変換可能なすべての文字が入力マスクに従って自動的に変換されます。たとえば、入力マスクを "A" に設定した場合、コントロールに小文字を入力すると、自動的に大文字に変換されます。

全角文字入力マスクに半角文字を入力した場合、入力した文字は自動的に全角に変換されます。また、コントロールで半角文字のみが許可されている場合には、全角のスペースは自動的に半角のスペースに変換されます。

次のサンプルコードは、AutoConvert プロパティを使用します。
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType datecell = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
datecell.FieldsEditMode = GrapeCity.Win.Spread.InputMan.CellType.FieldsEditMode.RightSide;
datecell.ExcelExportFormat = "MM/dd/yy";
fpSpread1.Sheets[0].Cells[0, 0].CellType = datecell;

GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType textcell = new GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType();
textcell.AutoConvert = true;
textcell.FormatString = "A";
fpSpread1.Sheets[0].Cells[1, 1].CellType = textcell;
Dim datecell As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType()
datecell.FieldsEditMode = GrapeCity.Win.Spread.InputMan.CellType.FieldsEditMode.RightSide
datecell.ExcelExportFormat = "MM/dd/yy"
FpSpread1.Sheets(0).Cells(0, 0).CellType = datecell

Dim textcell As New GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType()
textcell.AutoConvert = True
textcell.FormatString = "A"
FpSpread1.Sheets(0).Cells(1, 1).CellType = textcell
参照

GcTextBoxCellType クラス
GcTextBoxCellType メンバ

 

 


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