ListView.AddControlToContainer(Control, Control, Int32) Method

Definition

Adds the specified control to the specified container.

protected:
 virtual void AddControlToContainer(System::Web::UI::Control ^ control, System::Web::UI::Control ^ container, int addLocation);
protected virtual void AddControlToContainer (System.Web.UI.Control control, System.Web.UI.Control container, int addLocation);
abstract member AddControlToContainer : System.Web.UI.Control * System.Web.UI.Control * int -> unit
override this.AddControlToContainer : System.Web.UI.Control * System.Web.UI.Control * int -> unit
Protected Overridable Sub AddControlToContainer (control As Control, container As Control, addLocation As Integer)

Parameters

control
Control

An object that contains the controls to be added to the container.

container
Control

The container that is used to store the child controls.

addLocation
Int32

The location in the controls collection at which to add the child control.

Remarks

The AddControlToContainer method is a helper method that is called by the ListView control to add a control to the specified container.

Note

This method is primarily used by control developers to extend the ListView control.

Applies to

See also