Class CellTappedEventArgs
The Cell Tapped Event Arguments class contains the DateTime, Appointment and Appointments details of the tapped cell.
Inheritance
Namespace: Syncfusion.SfSchedule.XForms
Assembly: Syncfusion.SfSchedule.XForms.dll
Syntax
public class CellTappedEventArgs : EventArgs
Constructors
CellTappedEventArgs()
Initializes a new instance of the CellTappedEventArgs class.
Declaration
public CellTappedEventArgs()
Properties
Appointment
Gets the Appointment object and it properties to get the details of the tapped appointment in schedule.
Declaration
public object Appointment { get; }
Property Value
Type |
---|
System.Object |
Remarks
Tapped appointment is a Recurrence appointment it will returns the parent recurrence appointment values. It will be null for month view.
Appointments
Gets the Appointments collection which returns the collection of appointments details which are on the tapped month cell.
Declaration
public List<object> Appointments { get; }
Property Value
Type |
---|
System.Collections.Generic.List<System.Object> |
Remarks
Tapped Month Cell has Recurrence appointment it will returns the parent recurrence appointment values. It will be null for Day/Week/WorkWeek views.
CancelNavigation
Gets or sets a value indicating whether cancel or not the navigation to day view while clicking more appointments in month view.
Declaration
public bool CancelNavigation { get; set; }
Property Value
Type |
---|
System.Boolean |
Remarks
It will be applicable only for Xamarin.Forms.UWP desktop month view cell tapped.
Datetime
Gets Date Time property of Cell Tapped Event which returns the tapped cell date time details in schedule.
Declaration
public DateTime Datetime { get; }
Property Value
Type |
---|
System.DateTime |
IsMoreAppointments
Gets a value indicating whether the Is More Appointments are tapped or not in schedule month view when the appointment display mode as appointment.
Declaration
public bool IsMoreAppointments { get; }
Property Value
Type |
---|
System.Boolean |
Remarks
It will be applicable only for Xamarin.Forms.UWP desktop month view cell tapped.
Resource
Gets the Resource object and it properties to get the details of the tapped resource in schedule.
Declaration
public object Resource { get; }
Property Value
Type |
---|
System.Object |
Remarks
It returns schedule resource value for timeline view with resource view mode as Absolute. Otherwise, returns null.