ASPxWebControlBase.Controls Property
In This Article
Gets the web control’s collection of child controls.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public override ControlCollection Controls { get; }
#Property Value
Type | Description |
---|---|
Control |
A 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