ToolBarMinMouseMove Property

Gets or sets the distance in pixels the user needs to swipe across ToolBar for it to scroll the Tools.

Definition

Namespace: BeeMobile.ToolBar
Assembly: BeeMobile.ToolBar.NET48 (in BeeMobile.ToolBar.NET48.dll) Version: 4.8.3.5
C#
public int MinMouseMove { get; set; }

Property Value

Int32

Remarks

The value of MinMouseMove represents a distance between the point where the user clicked and the point where the mouse was released.

If this distance is longer than MinMouseMove then ToolBar will start scrolling. Otherwise, it will consider that short mouse move a click on a Tool and it will just change SelectedToolIndex.

The distance mentioned in the first paragraph is measured only along horizontal axis (if Orientation is horizontal) or along vertical axis (if Orientation is vertical).

See Also