Imports InputManCell = GrapeCity.Win.CalendarGrid.InputMan
Dim today As DateTime = DateTime.Today
Dim gcNumberCellType As New InputManCell.CalendarGcNumberCellType()
gcNumberCellType.SideButtons.Clear()
gcNumberCellType.DropDown.AllowDrop = False
GcCalendarGrid1.Content(today).Rows(1).Cells(0).CellType = gcNumberCellType
GcCalendarGrid1.Content(today).Rows(1).Cells(0).CellStyle.BackColor = Color.Azure
GcCalendarGrid1.ScrollIntoView(today)
using InputManCell = GrapeCity.Win.CalendarGrid.InputMan;
var today = DateTime.Today;
var gcNumberCellType = new InputManCell.CalendarGcNumberCellType();
gcNumberCellType.SideButtons.Clear();
gcNumberCellType.DropDown.AllowDrop = false;
gcCalendarGrid1.Content[today].Rows[1].Cells[0].CellType = gcNumberCellType;
gcCalendarGrid1.Content[today].Rows[1].Cells[0].CellStyle.BackColor = Color.Azure;
gcCalendarGrid1.ScrollIntoView(today);