Skip to main content

MoveType Enum

Provides members that specify the position of an element related to other UI elements.

Namespace: DevExpress.Xpf.Layout.Core

Assembly: DevExpress.Xpf.Layout.v23.2.Core.dll

NuGet Package: DevExpress.Wpf.Docking

Declaration

public enum MoveType

Members

Name Description
None

Prevents an item from being moved.

Left

Moves an item to the left of another item.

Right

Moves an item to the right of another item.

Top

Moves an item above another item.

Bottom

Moves an item below another item.

InsideGroup

Moves an item inside another container item.

Related API Members

The following properties accept/return MoveType values:

Remarks

The MoveType enumerator is used to pass to method (such as the LayoutController.Move method) values that tell the method exactly where it should place one object (the item parameter) relative to another object (the target parameter). See the LayoutController.Move topic to learn more.

See Also