Class CellTappedEventArgs
Provides data for the CellTapped event.
Namespace: Syncfusion.UI.Xaml.Scheduler
Assembly: Syncfusion.Scheduler.WinUI.dll
Syntax
public class CellTappedEventArgs : EventArgs
Constructors
CellTappedEventArgs()
Declaration
public CellTappedEventArgs()
Properties
Appointment
Gets the Tapped appointment values.
Declaration
public ScheduleAppointment Appointment { get; }
Property Value
Type |
---|
ScheduleAppointment |
Remarks
When tapping on the occurrence appointment in timeslot cell, it holds the occurrence appointment details. You can get the pattern appointment details from the occurrence appointment by using the GetPatternAppointment(SfScheduler, Object) It will be null for month view.
Appointments
Gets the Tapped Month cell appointments values.
Declaration
public List<ScheduleAppointment> Appointments { get; }
Property Value
Type |
---|
System.Collections.Generic.List<ScheduleAppointment> |
Remarks
When tapping on the occurrence appointment in month cell, it holds the occurrence appointment details. You can get the pattern appointment details from the occurrence appointment by using the GetPatternAppointment(SfScheduler, Object) It will be null for Day/Week/Timeline views.
CancelNavigation
Gets a value indicating whether day view navigation should be disabled while clicking more appointments in month view.
Declaration
public bool CancelNavigation { get; }
Property Value
Type |
---|
System.Boolean |
Remarks
It will be applicable for month view cell tapped when appointments are displayed in month cell.
DateTime
Gets the date time of the tapped cell.
Declaration
public DateTime DateTime { get; }
Property Value
Type |
---|
System.DateTime |
IsMoreAppointments
Gets a value indicating whether more appointments are tapped or not in month view.
Declaration
public bool IsMoreAppointments { get; }
Property Value
Type |
---|
System.Boolean |
Remarks
It will be applicable for month view cell tapped when appointments are displayed in month cell.
PointerDeviceType
Gets the device type that associated with event.
Declaration
public PointerDeviceType PointerDeviceType { get; }
Property Value
Type |
---|
Microsoft.UI.Input.PointerDeviceType |
Resource
Gets the resource associated with the timeslot where user tapped.
Declaration
public SchedulerResource Resource { get; }
Property Value
Type |
---|
SchedulerResource |
Remarks
Data property holds the data object associated with scheduler when scheduler resource created from custom data object using ResourceMapping.