Skip to main content
A newer version of this page is available.
All docs
V18.2

AppointmentStatusCollection.Item[Int32] Property

OBSOLETE

Use the GetById, GetByIndex, or GetByType methods instead

Provides indexed access to individual items in the appointment status collection.

Namespace: DevExpress.Xpf.Scheduler

Assembly: DevExpress.Xpf.Scheduler.v18.2.dll

Declaration

[Obsolete("Use the GetById, GetByIndex, or GetByType methods instead")]
[Browsable(false)]
public AppointmentStatus this[int index] { get; }

Parameters

Name Type Description
index Int32

A zero-based integer specifying the desired item’s position within the collection. If it’s negative or exceeds the last available index, an exception fires.

Property Value

Type Description
AppointmentStatus

An AppointmentStatus object at the specified position in the collection.

Remarks

Important

You are viewing documentation for the legacy WPF Scheduler control. If you’re starting a new project, we strongly recommend that you use a new control declared in the DevExpress.Xpf.Scheduling namespace. If you decide to upgrade an existing project in order to switch to the updated scheduler control, see the Migration Guidelines document.

Use the AppointmentStatusCollection.GetByIndex, AppointmentStatusCollection.GetById or AppointmentStatusCollection.GetByType methods instead.

See Also