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

ASPxDockPanel.AllowDragging Property

Gets or sets a value specifying whether a panel can be dragged by end users.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue(true)]
public override bool AllowDragging { get; set; }

Property Value

Type Default Description
Boolean **true**

true if end users can drag a panel; otherwise, false.

Remarks

Use the AllowDragging property to control the ability of end users to drag a panel to another position within a web page. To specify which part of a panel can be dragged to move the panel within the page use the ASPxPopupControlBase.DragElement property.

If the AllowDragging option is enabled, you can perform specific actions in response to the start and end of a dragging operation, by handling the client-side ASPxClientDockPanel.StartDragging and ASPxClientDockPanel.EndDragging events.

See Also