'Declaration Public Event BeforeViewChange As System.EventHandler(Of BeforeViewChangeEventArgs)
public event System.EventHandler<BeforeViewChangeEventArgs> BeforeViewChange
Event Data
The event handler receives an argument of type BeforeViewChangeEventArgs containing data related to this event. The following BeforeViewChangeEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
Dates | Gets or sets the range of dates which should be selected in the view. |
ViewType | Gets or sets ScheduleViewEnum value determining which type of view should be selected. |
Remarks
Change BeforeViewChangeEventArgs properties to cancel action, to set other view type or to set other range of dates.
See Also