Modifier

CompositeControl.Controls Property

Definition

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.

Applies to

See also