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

NavBarDragDrop Enum

Contains values specifying drag-and-drop options.

Namespace: DevExpress.XtraNavBar

Assembly: DevExpress.XtraNavBar.v18.2.dll

Declaration

[Flags]
public enum NavBarDragDrop

Members

Name Description
None

If active, disables all other options. Drag-and-drop operations are prohibited for a control/group in such a case.

Default

If active for a NavBarControl control, enables the AllowDrag and AllowDrop options and disables all others. If active for a group, the group inherits the control’s set of drag-and-drop options.

AllowDrag

If active for a NavBarControl control, its links are allowed to be dragged. If active for a group, a user can drag items of this group.

AllowDrop

If active for a NavBarControl control, links of this control can be dropped onto it. If active for a group, links of the control can be dropped onto this group. Links of other controls cannot be dropped unless the AllowOuterDrop option is active.

AllowOuterDrop

If active for a NavBarControl control, links of other NavBarControl controls can be dropped onto the control. If active for a group, links of other controls can be dropped onto this group. Use the AllowDrop option to specify whether links of this control can be dropped onto the control/group.

Related API Members

The following properties accept/return NavBarDragDrop values:

Remarks

Values listed in the NavBarDragDrop enumeration are used to set the NavBarControl.DragDropFlags and NavBarGroup.DragDropFlags properties. These properties specify drag and drop options for the control and each group within it.

See Also