Skip to main content
A newer version of this page is available. .

SchedulerViewInfoBase.GetAllAppointmentViewInfos() Method

Provides access to the collection of objects containing information on appointments and their visual representation.

Namespace: DevExpress.XtraScheduler.Drawing

Assembly: DevExpress.XtraScheduler.v19.1.dll

Declaration

public IEnumerable<AppointmentViewInfo> GetAllAppointmentViewInfos()

Returns

Type Description
IEnumerable<AppointmentViewInfo>

A collection of AppointmentViewInfo objects.

Remarks

AppointmentViewInfo items of the collection, available via the GetAllAppointmentViewInfos property, are useful for custom painting appointments. Refer to the SchedulerControl.AppointmentViewInfoCustomizing event description and How to: Custom Paint Appointments topic, for examples and more information on this subject.

Note

You can use the SchedulerViewInfoBase.CopyAllAppointmentViewInfos method instead because it is thread-safe.

See Also