CompositeControl.Controls Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a ControlCollection object that represents the child controls in a CompositeControl.
public:
virtual property System::Web::UI::ControlCollection ^ Controls { System::Web::UI::ControlCollection ^ get(); };
public override System.Web.UI.ControlCollection Controls { get; }
member this.Controls : System.Web.UI.ControlCollection
Public Overrides ReadOnly Property Controls As ControlCollection
Property Value
A ControlCollection that represents the child controls in the CompositeControl.
Remarks
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.