バージョン

InitializeDateHeaderMonthViewMulti イベント

UltraMonthViewMulti コントロールが日付ヘッダーで使用するために印刷操作に作成されるときに呼び出されます。
シンタックス
'宣言
 
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;
		}
参照