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

AppointmentBaseCollection.FindAll(Predicate<Appointment>) Method

Finds all elements with a predicate match and returns them in a list collection.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v22.1.Core.dll

NuGet Package: DevExpress.Scheduler.Core

Declaration

public AppointmentBaseCollection FindAll(
    Predicate<Appointment> match
)

Parameters

Name Type Description
match Predicate<Appointment>

A predicate method delegate, which returns true if there’s a match and the element is found.

Returns

Type Description
AppointmentBaseCollection

An AppointmentBaseCollection object containing items that meet the criteria.

See Also