Class SchedulerInteractionEventArgs
Occurs when the user tap, double tap and long press on the scheduler elements.
Inheritance
System.Object
SchedulerInteractionEventArgs
Namespace: Syncfusion.Maui.Scheduler
Assembly: Syncfusion.Maui.Scheduler.dll
Syntax
public class SchedulerInteractionEventArgs : EventArgs
Remarks
The tapped date, appointments, and element details when the tap action performed on the scheduler element available in the SchedulerInteractionEventArgs.
Constructors
SchedulerInteractionEventArgs()
Declaration
public SchedulerInteractionEventArgs()
Properties
Appointments
Gets the collection of appointments that tapped or falls inside the selected date.
Declaration
public ReadOnlyCollection<object> Appointments { get; }
Property Value
Type |
---|
System.Collections.ObjectModel.ReadOnlyCollection<System.Object> |
Date
Gets the selected date that tapped on view.
Declaration
public Nullable<DateTime> Date { get; }
Property Value
Type |
---|
System.Nullable<System.DateTime> |
Element
Gets the selected element of the scheduler.
Declaration
public SchedulerElement Element { get; }
Property Value
Type |
---|
SchedulerElement |
Resource
Gets the selected resource.
Declaration
public SchedulerResource Resource { get; }
Property Value
Type |
---|
SchedulerResource |
WeekNumber
Gets the interacted element week number value.
Declaration
public int WeekNumber { get; }
Property Value
Type |
---|
System.Int32 |
Remarks
This property will not be applicable for the SchedulerView is Timeline Month and AgendaView.