次のサンプルコードは、このプロパティの使用方法を示します。このサンプルコードは、
GcTextBoxCell に示されている詳細なコード例の一部を抜粋したものです。
private void Form1_Load(object sender, EventArgs e)
{
// Create an instance of a GcTextBox control.
CalendarGcTextBoxCellType gcTextBoxCell1 = new CalendarGcTextBoxCellType();
// Accept upper and lower case alphabet, as well as the symbols. Except '#', '@' and '*' chars.
gcTextBoxCell1.Format = @"aA@^\#\@*";
// The GcTextBox will try to convert the invalid char to valid char automatically.
gcTextBoxCell1.AutoConvert = true;
DropDownButton dropDownButton1 = new DropDownButton();
dropDownButton1.Visible = CalendarCellButtonVisibility.ShowForCurrentCell;
gcTextBoxCell1.SideButtons.Add(dropDownButton1);
CalendarTemplate template1 = CalendarTemplate.CreateDefaultTemplate();
template1.Content[1, 0].CellType = gcTextBoxCell1;
template1.Content[2, 0].CellType = gcTextBoxCell1.Clone();
gcCalendarGrid1.Template = template1;
}
Private Sub Form1_Load(sender As Object, e As EventArgs)
' Create an instance of a GcTextBox control.
Dim gcTextBoxCell1 As New CalendarGcTextBoxCellType()
' Accept upper and lower case alphabet, as well as the symbols. Except '#', '@' and '*' chars.
gcTextBoxCell1.Format = "aA@^\#\@*"
' The GcTextBox will try to convert the invalid char to valid char automatically.
gcTextBoxCell1.AutoConvert = True
Dim dropDownButton1 As New DropDownButton()
dropDownButton1.Visible = CalendarCellButtonVisibility.ShowForCurrentCell
gcTextBoxCell1.SideButtons.Add(dropDownButton1)
Dim template1 As CalendarTemplate = CalendarTemplate.CreateDefaultTemplate()
template1.Content(1, 0).CellType = gcTextBoxCell1
template1.Content(2, 0).CellType = gcTextBoxCell1.Clone()
gcCalendarGrid1.Template = template1
End Sub