CompositeControl.Controls Property
.NET Framework 3.0
Gets a ControlCollection object that represents the child controls in a CompositeControl.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public: virtual property ControlCollection^ Controls { ControlCollection^ get () override; }
/** @property */ public ControlCollection get_Controls ()
public override function get Controls () : ControlCollection
Not applicable.
Property Value
A ControlCollection that represents the child controls in the CompositeControl.The Controls property overrides the base implementation to ensure that all child controls have been created prior to returning the ControlCollection object.
The Controls property allows you to programmatically access the ControlCollection for the CompositeControl. You can add controls to, or remove controls from the collection, and iterate through the controls in the collection.
Community Additions
ADD
Show: