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

PopupMenuShowingEventArgs.HitInfo Property

Gets an object that identifies a clicked element.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

public GridHitInfo HitInfo { get; }

Property Value

Type Description
GridHitInfo

A GridHitInfo object or its descendant that identifies a clicked element.

Remarks

The HitInfo property allows you to determine the Grid’s visual element for which a popup menu will be displayed.

For instance, to check the type of the clicked element, use the HitTest property provided by the HitInfo object.

See Hit Information, for further information.

See Also