ListView.Controls Property (System.Web.UI.WebControls)

Switch View :
ScriptFree
.NET Framework Class Library
ListView.Controls Property

Gets a ControlCollection object that represents the child controls of the ListView control.

Namespace:  System.Web.UI.WebControls
Assembly:  System.Web.Extensions (in System.Web.Extensions.dll)
Syntax

Visual Basic
Public Overrides ReadOnly Property Controls As ControlCollection
C#
public override ControlCollection Controls { get; }
Visual C++
public:
virtual property ControlCollection^ Controls {
	ControlCollection^ get () override;
}
F#
abstract Controls : ControlCollection
override Controls : ControlCollection

Property Value

Type: System.Web.UI.ControlCollection
The collection of child controls for the ListView control.
Remarks

The Controls property overrides the base implementation. This guarantees that all child controls have been created before the property returns the ControlCollection object.

The Controls property enables you to programmatically access the instance of the ControlCollection class for the ListView control. You can add controls to the collection, remove controls from the collection, or iterate through the server controls in the collection.

To access a specific child control of the ListView control, you can use the FindControl method.

Version Information

.NET Framework

Supported in: 4, 3.5
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference

Other Resources