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

BaseLayoutItem.Move(BaseLayoutItem, InsertType) Method

Moves the item to the specified visual position within the LayoutControl.

Namespace: DevExpress.XtraLayout

Assembly: DevExpress.XtraLayout.v19.1.dll

Declaration

public virtual bool Move(
    BaseLayoutItem baseItem,
    InsertType insertType
)

Parameters

Name Type Description
baseItem BaseLayoutItem

A BaseLayoutItem descendant that represents the layout item within the LayoutControl.

insertType DevExpress.XtraLayout.Utils.InsertType

A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new group relative to the specified baseItem.

Returns

Type Description
Boolean

true if the item has been successfully moved to a new position; otherwise, false.

Remarks

The following code moves layoutControlItem1 on the right of layoutControlItem2:


layoutControlItem1.Move(layoutControlItem2, DevExpress.XtraLayout.Utils.InsertType.Right);
See Also