WizardHitInfo Class
Contains information about a specific point within the XtraWizard control.
Namespace: DevExpress.XtraWizard
Assembly: DevExpress.XtraWizard.v24.1.dll
NuGet Package: DevExpress.Win
Declaration
Related API Members
The following members return WizardHitInfo objects:
Remarks
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.
}
Inheritance
Object
WizardHitInfo
See Also