GrapeCity.Win.PluginInputMan アセンブリ > GrapeCity.Win.Spread.InputMan.CellType 名前空間 > GcTextBoxCellType クラス : 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 | 文字の自動変換をしません。 |
AutoConvert プロパティを true に設定すると、変換可能なすべての文字が入力マスクに従って自動的に変換されます。たとえば、入力マスクを "A" に設定した場合、コントロールに小文字を入力すると、自動的に大文字に変換されます。
全角文字入力マスクに半角文字を入力した場合、入力した文字は自動的に全角に変換されます。また、コントロールで半角文字のみが許可されている場合には、全角のスペースは自動的に半角のスペースに変換されます。
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