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

LayoutControlItem.Owner Property

Gets or set the LayoutControl that owns the current layout item.

Namespace: DevExpress.XtraLayout

Assembly: DevExpress.XtraLayout.v19.1.dll

Declaration

public override ILayoutControl Owner { get; set; }

Property Value

Type Description
DevExpress.XtraLayout.ILayoutControl

A LayoutControl control.

Remarks

The Owner property is automatically initialized when a layout item is added to the layout control (for instance, by a call to the LayoutGroup.Add or LayoutGroup.AddItem method).

To access all the items that belong to a specific LayoutControl use the LayoutControl.Items property.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Owner property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also