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

LayoutControlGroup.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.1.dll

Declaration

public LayoutControlItem 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 the ‘newItem’ is inserted.

insertType DevExpress.XtraLayout.Utils.InsertType

A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the ‘newItem’ relative to the specified item.

Returns

Type Description
LayoutControlItem

The added layout item.

Remarks

This method overrides the base LayoutGroup.AddItem method to return a LayoutControlItem object. For more information, refer to the corresponding LayoutGroup.AddItem method overload.

See Also