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

HitInfo.IsEqual(Object) Method

Determines whether the specified object is equal to the current HitInfo object.

Namespace: DevExpress.XtraBars.Docking

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

public bool IsEqual(
    object obj
)

Parameters

Name Type Description
obj Object

An object containing information about a specific point within a dock panel.

Returns

Type Description
Boolean

true if the specified object is equal to the current HitInfo object; otherwise, false.

Remarks

Two HitInfo objects are considered to be equal if the values of their HitInfo.HitTest, HitInfo.Bounds, HitInfo.Button and HitInfo.Tab properties match. The IsEqual method can be useful when it’s necessary to identify if the mouse pointer is still hovering over the same visual element of the dock panel.

See Also