Version 24.2 (latest)

EventManager Property (UltraMonthViewMulti)

The object that enables, disables and controls firing of UltraMonthViewMulti specific events.
Syntax
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
'Declaration
 
Public ReadOnly Property EventManager As MonthViewMultiEventManager
 
private void DisableScrollEvents()
{

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

}
'Declaration
 
Public ReadOnly Property EventManager As MonthViewMultiEventManager
 
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