WebPartCollection.Item Property (String)

Returns a member of the collection based on a unique string identifier.

Namespace: System.Web.UI.WebControls.WebParts
Assembly: System.Web (in system.web.dll)

public:
property WebPart^ default [String^] {
	WebPart^ get (String^ id);
}
/** @property */
public WebPart get_Item (String id)

Not applicable.

Parameters

id

The unique identifier for a particular WebPart control in a collection.

Property Value

The first WebPart in the collection whose ID equals the value of id.

The Item indexer enables you to access a WebPart control in a WebPartCollection object according to a unique identifier.

NoteNote:

The Web Parts control set performs case-insensitive matching on this property, so case sensitivity is not part of a unique id value.

The Item property also works to identify members of a WebPartCollection object in some specialized cases. In the case of GenericWebPart controls, the indexer is able to match the identifier for the underlying child control wrapped by the GenericWebPart control. In the case of ProxyWebPart controls, the indexer matches the identifier for the control based on a case-insensitive comparison of the id parameter and either the OriginalID or GenericWebPartID property values.

Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: