Skip to main content

TreeListOptionsBehavior.SmartMouseHover Property

Gets or sets whether the regions occupied by the scroll bars and active cell editors are considered to be a part of the Tree List’s area.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v23.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

Declaration

[DefaultValue(true)]
[XtraSerializableProperty]
public virtual bool SmartMouseHover { get; set; }

Property Value

Type Default Description
Boolean true

true if the regions occupied by the scroll bars and active cell editors are considered to be a part of the Tree List’s area; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to SmartMouseHover
TreeList
.OptionsBehavior .SmartMouseHover

Remarks

If the SmartMouseHover option is set to true, the MouseEnter and MouseLeave events fire only after the mouse pointer has intersected the control’s border. Otherwise, if this option is set to false, scroll bars and active cell editors do not belong to the Tree List control. In this case the MouseEnter and MouseLeave events fire when the mouse pointer intersects the control’s border, scroll bar’s border or active cell editor’s border.

See Also