AppointmentItem.QueryEnd Property
Returns the normalized appointment end value that is to use in interval-based appointment data source queries.
Namespace: DevExpress.Maui.Scheduler
Assembly: DevExpress.Maui.Scheduler.dll
NuGet Package: DevExpress.Maui.Scheduler
Declaration
public DateTime QueryEnd { get; }
Property Value
Type | Description |
---|---|
DateTime | The normalized appointment end. |
Remarks
The QueryEnd
property return values are dependent on the appointment type, as shown in the following table.
Appointment Type | QueryEnd Value |
---|---|
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 DateTime.MaxValue is returned. |
ChangedOccurrence |
The End value of an original occurrence before modification (as if an occurrence is restored from the exception). |
DeletedOccurrence |
The End value of an original occurrence before modification (as if an occurrence is restored from the exception). |
See Also