GrapeCity.Win.PluginInputMan アセンブリ > GrapeCity.Win.Spread.InputMan.CellType 名前空間 > GcTextBoxCellType クラス : AutoConvert プロパティ |
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