aspnet-devexpress-dot-web-dot-aspxdockpanel-030bf0e9.md
Specifies the unique identifier of a zone that owns the panel.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue("")]
public string OwnerZoneUID { get; set; }
<DefaultValue("")>
Public Property OwnerZoneUID As String
| Type | Default | Description |
|---|---|---|
| String | String.Empty |
The zone UID.
|
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.
See Also