'Declaration Protected Overridable Sub OnInitializeMonth( _ ByVal e As InitializeMonthEventArgs _ )
protected virtual void OnInitializeMonth( InitializeMonthEventArgs e )
Raising an event invokes the event handler through a delegate.
The OnInitializeMonth method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
Notes to Inheritors: When overriding OnInitializeMonth in a derived class, be sure to call the base class's OnInitializeMonth method so that registered delegates receive the event.
Private Sub ultraCalendarInfo1_InitializeMonth(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinSchedule.InitializeMonthEventArgs) Handles ultraCalendarInfo1.InitializeMonth '---------------------------------------------------------------------------------------------------- ' Description ' InitializeMonth ' ' Fires when a Month object is initialized, either through actions performed via the user interface, ' or as a result of the GetMonth method being called. ' '---------------------------------------------------------------------------------------------------- Dim monthName As String = System.Globalization.CultureInfo.CurrentCulture.DateTimeFormat.MonthNames(e.Month.MonthNumber - 1) Debug.WriteLine("================================================================================") Debug.WriteLine("InitializeMonth event fired for " + monthName) Debug.WriteLine("================================================================================") Debug.WriteLine("") End Sub
using System.Diagnostics; using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinSchedule; private void ultraCalendarInfo1_InitializeMonth(object sender, Infragistics.Win.UltraWinSchedule.InitializeMonthEventArgs e) { //---------------------------------------------------------------------------------------------------- // Description // InitializeMonth // // Fires when a Month object is initialized, either through actions performed via the user interface, // or as a result of the GetMonth method being called. // //---------------------------------------------------------------------------------------------------- string monthName = System.Globalization.CultureInfo.CurrentCulture.DateTimeFormat.MonthNames[ e.Month.MonthNumber -1 ]; Debug.WriteLine( "================================================================================" ); Debug.WriteLine( "InitializeMonth event fired for " + monthName ); Debug.WriteLine( "================================================================================" ); Debug.WriteLine( "" ); }
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2