WebPartManagerInternals.GetZoneID(WebPart) Method

Definition

Gets the ID of a zone that contains the specified WebPart or server control.

public:
 System::String ^ GetZoneID(System::Web::UI::WebControls::WebParts::WebPart ^ webPart);
public string GetZoneID (System.Web.UI.WebControls.WebParts.WebPart webPart);
member this.GetZoneID : System.Web.UI.WebControls.WebParts.WebPart -> string
Public Function GetZoneID (webPart As WebPart) As String

Parameters

webPart
WebPart

A WebPart that resides in a zone.

Returns

A string that represents the ID of the zone that contains webPart.

Remarks

The GetZoneID method returns the ID of the zone that contains the control referenced by the webPart parameter.

Note

The Zone property of webPart references the actual zone object that contains webPart, not the ID of the zone. If webPart is currently closed, the value of its Zone property is null, and the GetZoneID method will return the ID of the last zone that webPart was in prior to being closed.

Applies to

See also