windowsforms-devexpress-dot-xtrawizard-33d354d7.md
Contains information about a specific point within the XtraWizard control.
Namespace : DevExpress.XtraWizard
Assembly : DevExpress.XtraWizard.v25.2.dll
NuGet Package : DevExpress.Win
public class WizardHitInfo
Public Class WizardHitInfo
The following members return WizardHitInfo objects:
WizardHitInfo objects can be created by calling the WizardControl.CalcHitInfo method. This method requires the test point as a parameter. Use the WizardHitInfo.HitTest property, to identify which element is located under the test point.
using DevExpress.XtraWizard;
...
WizardHitInfo hi = wizardControl1.CalcHitInfo(wizardControl1.PointToClient(MousePosition));
if (hi.HitTest == WizardHitTest.PageClient) {
// Do something.
}
Object WizardHitInfo
See Also