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

LayoutGroup.AddItem(BaseLayoutItem, BaseLayoutItem, InsertType) Method

Inserts the specified item at a position relative to another item within the current group.

Namespace: DevExpress.XtraLayout

Assembly: DevExpress.XtraLayout.v19.2.dll

Declaration

public LayoutItem AddItem(
    BaseLayoutItem newItem,
    BaseLayoutItem baseItem,
    InsertType insertType
)

Parameters

Name Type Description
newItem BaseLayoutItem

The item to be moved to a new position.

baseItem BaseLayoutItem

A BaseLayoutItem descendant (owned by the current group) next to which a new item is inserted.

insertType DevExpress.XtraLayout.Utils.InsertType

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

Returns

Type Description
LayoutItem

The added layout item.

See Also