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

UserInterfaceObjectCollection<T> Class

Represents a base collection for user interface objects.

Namespace: DevExpress.XtraScheduler

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

Declaration

public abstract class UserInterfaceObjectCollection<T> :
    SchedulerCollectionBase<T>,
    IStorageCollection<T>,
    IEnumerable<T>,
    IEnumerable,
    ICollection
    where T : IUserInterfaceObject

Type Parameters

Name
T

Remarks

The UserInterfaceObjectCollection<T> class serves as a base for collections which contain different user interface objects (the UserInterfaceObject descendants). The properties and methods declared by this class can be used to perform common collection operations such as adding new or deleting existing items.

See Also