Skip to main content
A newer version of this page is available. .
Tab

ASPxDockPanel.OwnerZoneUID Property

Specifies the unique identifier of a zone that owns the panel.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

[DefaultValue("")]
public string OwnerZoneUID { get; set; }

Property Value

Type Default Description
String String.Empty

The zone UID.

Remarks

Use the OwnerZoneUID property, to specify a zone in which the current panel is docked.

<dx:ASPxDockPanel runat="server" ID="panel1" PanelUID="panel1" OwnerZoneUID="zone1" ...>
    ...
</dx:ASPxDockPanel>
<dx:ASPxDockZone runat="server" ID="dockZone1" ZoneUID="zone1">
</dx:ASPxDockZone>

The OwnerZoneUID property value equals a zone’s ASPxDockZone.ZoneUID property value if the ASPxDockPanel.OwnerZone property is specified.

The OwnerZoneUID property value cannot be changed in the control’s Init event handler, if this property is specified in a page’s markup.

Run Demo

See Also