Version

EventManager Property (UltraMonthViewMulti)

The object that enables, disables and controls firing of UltraMonthViewMulti specific events.
Syntax
'Declaration
 
Public ReadOnly Property EventManager As MonthViewMultiEventManager
public MonthViewMultiEventManager EventManager {get;}
Example
This example uses the control's EventManager property to disable the scrolling-related events (BeforeScroll / AfterScroll) so that they do not fire.

Private Sub DisableScrollEvents()

    Me.ultraMonthViewMulti1.EventManager.SetEnabled(MonthViewMultiEventIds.BeforeMonthScroll, False)
    Me.ultraMonthViewMulti1.EventManager.SetEnabled(MonthViewMultiEventIds.AfterMonthScroll, False)

End Sub
private void DisableScrollEvents()
{

       this.ultraMonthViewMulti1.EventManager.SetEnabled(MonthViewMultiEventIds.BeforeMonthScroll, false);
       this.ultraMonthViewMulti1.EventManager.SetEnabled(MonthViewMultiEventIds.AfterMonthScroll, false);

}
Requirements

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

See Also