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

LayoutView.Items Property

Provides access to a card’s visible and hidden layout items (card fields, empty regions, etc).

Namespace: DevExpress.XtraGrid.Views.Layout

Assembly: DevExpress.XtraGrid.v24.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

#Declaration

[XtraSerializableProperty(XtraSerializationVisibility.Collection, true, true, true, 1000, XtraSerializationFlags.DefaultValue)]
[XtraSerializablePropertyId(2)]
[Browsable(false)]
public ReadOnlyItemCollection Items { get; set; }

#Property Value

Type Description
DevExpress.XtraLayout.Utils.ReadOnlyItemCollection

A DevExpress.XtraLayout.Utils.ReadOnlyItemCollection collection containing a card’s items.

#Remarks

To access only hidden items, use the LayoutView.HiddenItems property.

To customize the layout of fields within a card, use the LayoutView.TemplateCard property.

See Also