Skip to main content

AppointmentStorage.Contains(Appointment) Method

Determines whether the storage's collection contains the specified appointment.

Namespace: DevExpress.Xpf.Scheduler

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

Declaration

public override bool Contains(
    Appointment obj
)
Public Overrides Function Contains(
    obj As Appointment
) As Boolean

Parameters

Name Type Description
obj Appointment

A Appointment object to be searched in the collection.

Returns

Type Description
Boolean

true if the collection contains the specified appointment; otherwise, false.

Remarks

The collection of appointments in storage is accessed via its AppointmentStorage.Items property.

See Also