Back to Devexpress

WizardHitInfo Class

windowsforms-devexpress-dot-xtrawizard-33d354d7.md

latest1.6 KB
Original Source

WizardHitInfo Class

Contains information about a specific point within the XtraWizard control.

Namespace : DevExpress.XtraWizard

Assembly : DevExpress.XtraWizard.v25.2.dll

NuGet Package : DevExpress.Win

Declaration

csharp
public class WizardHitInfo
vb
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.

csharp
using DevExpress.XtraWizard;
...

WizardHitInfo hi = wizardControl1.CalcHitInfo(wizardControl1.PointToClient(MousePosition));
if (hi.HitTest == WizardHitTest.PageClient) {
    // Do something.
}

Inheritance

Object WizardHitInfo

See Also

WizardHitInfo Members

DevExpress.XtraWizard Namespace