'宣言 Public Event InitializeDateHeaderMonthViewMulti As InitializeMonthViewMultiEventHandler
public event InitializeMonthViewMultiEventHandler InitializeDateHeaderMonthViewMulti
イベント ハンドラが、このイベントに関連するデータを含む、InitializeMonthViewMultiEventArgs 型の引数を受け取りました。次の InitializeMonthViewMultiEventArgs プロパティには、このイベントの固有の情報が記載されます。
プロパティ | 解説 |
---|---|
Control | 印刷操作に使用する Infragistics.Win.UltraWinSchedule.UltraMonthViewMulti コントロールを返します。 |
UltraSchedulePrintDocumentは、カレンダー情報をプリンタに描画するためにさまざまなスケジュールコントロールのインスタンスを作成しますコントロールが作成される時に、それぞれの「Template」プロパティ (TemplateDateHeaderMonthViewMulti など) に基づいて初期化され、次にコントロールにさらなるカスタマイズを可能とするために関連付けられた初期化イベント (InitializeDateHeaderMonthViewMulti など)が呼び出されます。
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinSchedule Private Sub UltraSchedulePrintDocument1_InitializeDateHeaderMonthViewMulti(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinSchedule.Printing.InitializeMonthViewMultiEventArgs) Handles UltraSchedulePrintDocument1.InitializeDateHeaderMonthViewMulti ' change the day of week caption to display the ' first two letters of the name e.Control.DayOfWeekCaptionStyle = DayOfWeekCaptionStyle.FirstTwoLetters ' change the month header caption to use the short name ' instead of the long description e.Control.MonthHeaderCaptionStyle = MonthHeaderCaptionStyle.ShortDescription ' show the trailing days e.Control.TrailingDaysVisible = True ' display week numbers e.Control.WeekNumbersVisible = True End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinSchedule; private void ultraSchedulePrintDocument1_InitializeDateHeaderMonthViewMulti(object sender, Infragistics.Win.UltraWinSchedule.Printing.InitializeMonthViewMultiEventArgs e) { // change the day of week caption to display the // first two letters of the name e.Control.DayOfWeekCaptionStyle = DayOfWeekCaptionStyle.FirstTwoLetters; // change the month header caption to use the short name // instead of the long description e.Control.MonthHeaderCaptionStyle = MonthHeaderCaptionStyle.ShortDescription; // show the trailing days e.Control.TrailingDaysVisible = true; // display week numbers e.Control.WeekNumbersVisible = true; }