private void Form1_Load(object sender, EventArgs e)
{
CalendarGcMaskCellType gcMaskCell1 = new CalendarGcMaskCellType();
SetGcMaskCellFields(gcMaskCell1);
CalendarTemplate template1 = CalendarTemplate.CreateDefaultTemplate();
template1.Content[1, 0].CellType = gcMaskCell1;
template1.Content[2, 0].CellType = gcMaskCell1.Clone();
gcCalendarGrid1.Template = template1;
}
Private Sub Form1_Load(sender As Object, e As EventArgs)
Dim gcMaskCell1 As New CalendarGcMaskCellType()
SetGcMaskCellFields(gcMaskCell1)
Dim template1 As CalendarTemplate = CalendarTemplate.CreateDefaultTemplate()
template1.Content(1, 0).CellType = gcMaskCell1
template1.Content(2, 0).CellType = gcMaskCell1.Clone()
gcCalendarGrid1.Template = template1
End Sub