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

LayoutViewHitInfo.LayoutItem Property

Gets a card layout item located under the test point.

Namespace: DevExpress.XtraGrid.Views.Layout.ViewInfo

Assembly: DevExpress.XtraGrid.v19.2.dll

Declaration

public BaseLayoutItem LayoutItem { get; set; }

Property Value

Type Description
BaseLayoutItem

A BaseLayoutItem descendant located under the test point. null (Nothing in Visual Basic) if the test point doesn’t belong to any layout item.

Remarks

In addition to regular card fields, cards can display the following card layout items:

When the test point belongs to any of these card elements, you can use the LayoutItem property to access this element. When the test point belongs to a card field, or doesn’t belong to any card layout item, the LayoutItem property returns null. See the LayoutViewHitInfo.InLayoutItem property to check whether the test point belongs to a card layout item.

See Also