Skip to main content
Tab

PopupWindowCollection Class

Represents a collection of popup windows.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public class PopupWindowCollection :
    Collection<PopupWindow>

The following members return PopupWindowCollection objects:

Remarks

A popup control holds its popup windows within a collection which is represented by an instance of the PopupWindowCollection class and can be accessed via the ASPxPopupControl.Windows property. Properties and methods exposed by the PopupWindowCollection class can be used to perform common collection operations, such as adding new popup windows or deleting existing ones. Each item of the collection is represented by a PopupWindow object. Individual popup windows can be accessed using indexer notation, by their names or content texts using specific methods of the collection.

See Also