private void SetTextProperty()
{
this.gcCalendarGrid1.Template.Content.GetCell(1, 0).Value = "SampleText";
this.gcCalendarGrid1.Template.Content.GetCell(1, 0).CellStyle.UseCompatibleTextRendering = CalendarGridTriState.True;
this.gcCalendarGrid1.Template.Content.GetCell(1, 0).CellStyle.TextAngle = 60;
this.gcCalendarGrid1.Template.Content.GetCell(1, 0).CellStyle.TextVertical = CalendarGridTriState.True;
}
Private Sub SetTextProperty()
Me.gcCalendarGrid1.Template.Content.GetCell(1, 0).Value = "SampleText"
Me.gcCalendarGrid1.Template.Content.GetCell(1, 0).CellStyle.UseCompatibleTextRendering = CalendarGridTriState.[True]
Me.gcCalendarGrid1.Template.Content.GetCell(1, 0).CellStyle.TextAngle = 60
Me.gcCalendarGrid1.Template.Content.GetCell(1, 0).CellStyle.TextVertical = CalendarGridTriState.[True]
End Sub