Skip to main content
A newer version of this page is available. .

WizardHitInfo Class

Contains information about a specific point within the XtraWizard control.

Namespace: DevExpress.XtraWizard

Assembly: DevExpress.XtraWizard.v19.2.dll

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