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

LayoutGroup.AddItem(String, BaseLayoutItem, BaseLayoutItem, InsertType) Method

Inserts the specified item at a position relative to another item within the current group. Allows the new text to be specified for the item.

Namespace: DevExpress.XtraLayout

Assembly: DevExpress.XtraLayout.v19.1.dll

Declaration

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

Parameters

Name Type Description
text String

A String value that specifies the new text to be assigned to the added item. The parameter is ignored if the value represents an empty string.

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 new item relative to the baseItem.

Returns

Type Description
LayoutItem

The added layout item.

See Also