property Schedule.SelCount as Long
Indicates the number of events being selected in the schedule panel.

TypeDescription
Long A Long expression that specifies the number of selected events.
The SelCount/SelEvent property may be used to retrieve the selected events one by one (The Selected property indicates whether the event is selected or unselected). We recommend using the Selection property and the for each statement to enumerate the events in the control. The /NET and /WPF versions of the component provide the SelEvents function that retrieves a collection of Event objects, as List<Event>.  The Selectable property of the Event indicates whether the event can be selected at runtime.

Once the user starts selecting a new event in the schedule panel, the control fires the LayoutStartChanging(exScheduleSelectionChange). Once a new event is selected, the LayoutEndChanging(exScheduleSelectionChange) event occurs. You can use the AllowSelectEvent property to change the key to allow the user select new events or you can prevent selecting any event using exDisallow value.