WebPartManagerInternals.GetZoneID(WebPart) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.