Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

WizardHitInfo Class

Contains information about a specific point within the XtraWizard control.

Namespace: DevExpress.XtraWizard

Assembly: DevExpress.XtraWizard.v24.2.dll

NuGet Package: DevExpress.Win

#Declaration

public class WizardHitInfo

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