Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

LayoutGroup.Item[Int32] Property

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

Namespace: DevExpress.XtraLayout

Assembly: DevExpress.XtraLayout.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#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