AppointmentItem.QueryEnd Property
In This Article
Returns the normalized appointment end value that is to use in interval-based appointment data source queries.
Namespace: DevExpress.XamarinForms.Scheduler
Assembly: DevExpress.XamarinForms.Scheduler.dll
NuGet Package: DevExpress.XamarinForms.Scheduler
#Declaration
C#
public DateTime QueryEnd { get; }
#Property Value
Type | Description |
---|---|
Date |
The normalized appointment end. |
#Remarks
The QueryEnd
property return values are dependent on the appointment type, as shown in the following table.
Appointment Type | Query |
---|---|
Normal |
The End value. |
Pattern |
The End value of the last appointment in the recurring series. If the series is infinite (no end date), the Date |
Changed |
The End value of an original occurrence before modification (as if an occurrence is restored from the exception). |
Deleted |
The End value of an original occurrence before modification (as if an occurrence is restored from the exception). |
See Also