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

LayoutGroup.Item[Int32] Property

Provides indexed access to the items that belong to the current group.

Namespace: DevExpress.XtraLayout

Assembly: DevExpress.XtraLayout.v19.1.dll

Declaration

public BaseLayoutItem this[int Index] { get; }

Parameters

Name Type Description
Index Int32

An integer that specifies the index of the required item.

Property Value

Type Description
BaseLayoutItem

A BaseLayoutItem object that represents the item at the specified index.

Remarks

This property provides indexed access to the items that belong to the current group. The index parameter can vary between 0 and LayoutGroup.Count - 1.

The items that belong to the group can also be accessed via the LayoutGroup.Items collection.

See Also