wpf-devexpress-dot-xpf-dot-grid-dot-treelist-c1cfb5e7.md
A class that contains information about what is located at a specific point within the TreeListView control.
Namespace : DevExpress.Xpf.Grid.TreeList
Assembly : DevExpress.Xpf.Grid.v25.2.dll
NuGet Package : DevExpress.Wpf.Grid.Core
public class TreeListViewHitInfo :
GridViewHitInfoBase,
ITableViewHitInfo,
IDataViewHitInfo
Public Class TreeListViewHitInfo
Inherits GridViewHitInfoBase
Implements ITableViewHitInfo,
IDataViewHitInfo
The following members return TreeListViewHitInfo objects:
Hit testing allows you to determine which element is located at a specific point on the screen. This can be used to provide additional hints within your application, manually process clicks on elements, handle drag and drop operations, etc.
Use the TreeListView.CalcHitInfo method to obtain the information on any point within a TreeListView. This method returns a TreeListViewHitInfo object that contains the required information (visual element, its location within a view, etc). To obtain which view element resides at the test point, use the TreeListViewHitInfo.HitTest property.
Object DevExpress.Xpf.Core.HitInfoBase<DevExpress.Xpf.Grid.DataViewHitTestVisitorBase> GridViewHitInfoBase TreeListViewHitInfo GanttViewHitInfo
See Also