GrapeCity CalendarGrid for Windows Forms 3.0J > CalendarGridの使い方 > テンプレート > テンプレートを作成する(テンプレート) |
テンプレートを作成するにはCalendarTemplateオブジェクトを使用します。
次のコードでは、テンプレートのインスタンスを生成して、GcCalendarGridコントロールに設定します。このコードでは、テンプレートを構成する4つのセクションにそれぞれ1行1列が追加されます。
Imports GrapeCity.Win.CalendarGrid Dim template As New CalendarTemplate() GcCalendarGrid1.Template = template
using GrapeCity.Win.CalendarGrid; CalendarTemplate template = new CalendarTemplate(); gcCalendarGrid1.Template = template;