aspnet-devexpress-dot-web-dot-aspxdockzone-30a605ee.md
Gets or sets whether a zone can enlarge its size to contain a docking panel.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(true)]
public bool AllowGrowing { get; set; }
<DefaultValue(True)>
Public Property AllowGrowing As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true to allow a zone to grow; otherwise, false
|
An ASPxDockZone control can enlarge its size ( Height for a vertically oriented zone and Width for a horizontally oriented zone) to contain a docking panel. Set the AllowGrowing property to false, to prohibit a zone from growing. In this case, a panel can not be docked in the zone if it does not fit.
To obtain the AllowGrowing property value on the client side, use the ASPxClientDockZone.GetAllowGrowing method.
See Also