Version

InitializeRecurrenceEventHandler Delegate

Handler for a application-specified method that expects to be called back when the InitializeRecurrence event fires.
Syntax
'Declaration
 
Public Delegate Sub InitializeRecurrenceEventHandler( _
   ByVal sender As Object, _
   ByVal e As InitializeRecurrenceEventArgs _
) 
public delegate void InitializeRecurrenceEventHandler( 
   object sender,
   InitializeRecurrenceEventArgs e
)

Parameters

sender
e
Remarks

Applications wishing to receive notification after a Recurrence has been fetched from the database and added to it's collection should implement a method within their application matching the signature of this delegate.

They may then instantiate the InitializeRecurrenceEventHandler and add it as a handler on the InitializeRecurrence event of their WebSchedule data provider.

Each time the event fires during data-bind, the application's method that has been added as a handler to the InitializeRecurrence event will receive InitializeRecurrenceEventArgs describing the newly added activity. This method can then perform any additional initializations on the Recurrence that the application requires (for example, perhaps modifying it's root activity).

InitializeRecurrence
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, 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

See Also