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.v26.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 | InsertType | The position of the new item relative to the baseItem. |
Returns
| Type | Description |
|---|---|
| LayoutItem | The added layout item. |
See Also