Skip to main content

TileNavPane.CalcHitInfo(Point) Method

Returns information on the TileNavPane element located at the specified point.

Namespace: DevExpress.XtraBars.Navigation

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public TileNavPaneHitInfo CalcHitInfo(
    Point pt
)

Parameters

Name Type Description
pt Point

A Point structure specifying the test point coordinates relative to the top-left corner of the TileNavPane control.

Returns

Type Description
DevExpress.XtraBars.Navigation.TileNavPaneHitInfo

A TileNavPaneHitInfo object containing information about the TileNavPane element located at the test point.

Remarks

Use the CalcHitInfo method to determine which element is located at the specified point. This method returns the TileNavPaneHitInfo object. Read the TileNavPaneHitInfo.HitTest property to get the TileNavPane‘s visual element to which the test point belongs.

See Also