Skip to main content
Tab

ASPxPopupControlBase.Controls Property

Gets a collection that contains child controls that are a control’s contents.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public ControlCollection Controls { get; }

Property Value

Type Description
ControlCollection

A ControlCollection that contains a control’s child controls.

Remarks

The Controls property allows you to programmatically access the instance of the ControlCollection class which contains child controls that are a control’s contents. You can add controls to the collection, remove controls from the collection, or iterate through the server controls in the collection.

View Example: How to return values from the content collection and close the pop-up window on the client or server

See Also