wpf-devexpress-dot-xpf-dot-grid-dot-cardview-dot-calchitinfo-x28-system-dot-windows-dot-dependencyobject-x29.md
Returns information about the specified element contained within the card view.
Namespace : DevExpress.Xpf.Grid
Assembly : DevExpress.Xpf.Grid.v25.2.dll
NuGet Package : DevExpress.Wpf.Grid.Core
public CardViewHitInfo CalcHitInfo(
DependencyObject d
)
Public Function CalcHitInfo(
d As DependencyObject
) As CardViewHitInfo
| Name | Type | Description |
|---|---|---|
| d | DependencyObject |
A DependencyObject object that represents the element contained within the card view.
|
| Type | Description |
|---|---|
| CardViewHitInfo |
A CardViewHitInfo object that contains information about the specified view element.
|
The CalcHitInfo method allows you to obtain information about any element contained within the card view. This can be useful when it is required to determine which element of a view a user has clicked or which element is located under the mouse pointer. The CalcHitInfo method returns a CardViewHitInfo object that contains the required information (visual element, its location within a view, etc.).
To learn more, see Hit Information.
This example shows how to determine which element in a card view is located under the mouse pointer.
private void grid_MouseMove(object sender, MouseEventArgs e) {
CardViewHitInfo hi =
((CardView)grid.View).CalcHitInfo(e.OriginalSource as DependencyObject);
textBlock.Text = hi.HitTest.ToString();
}
See Also