ASPxDockPanel.OwnerZoneUID Property
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
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.
See Also