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

ASPxWebControlBase.Controls Property

Gets the web control’s collection of child controls.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public override ControlCollection Controls { get; }

Property Value

Type Description
ControlCollection

A ControlCollection object representing the collection of child controls for the specified server control.

Remarks

The Controls property overrides the Controls property to return a proper collection of child controls for the current web server control.

The Controls property allows you to programmatically access the instance of the ControlCollection class for any server control. You can add controls to the collection, remove controls from the collection, or iterate through the server controls in the collection.

See Also