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

MaskSettings.AllowMouseWheel Property

Gets or sets a value that specifies whether an end-user is able to change the masked value within the editor using the mouse wheel.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(true)]
public bool AllowMouseWheel { get; set; }

Property Value

Type Default Description
Boolean **true**

true if the masked value can be changed via the mouse wheel when the editor is focused; otherwise, false.

Property Paths

You can access this nested property as listed below:

Show 15 property paths
Library Object Type Path to AllowMouseWheel
ASP.NET Controls and MVC Extensions ASPxButtonEdit
.MaskSettings .AllowMouseWheel
ASPxTextBox
.MaskSettings .AllowMouseWheel
ButtonEditProperties
.MaskSettings .AllowMouseWheel
RibbonTextBoxProperties
.MaskSettings .AllowMouseWheel
TextBoxProperties
.MaskSettings .AllowMouseWheel
ASP.NET Bootstrap Controls BootstrapButtonEdit
.MaskSettings .AllowMouseWheel
BootstrapButtonEditProperties
.MaskSettings .AllowMouseWheel
BootstrapTextBox
.MaskSettings .AllowMouseWheel
BootstrapTextBoxProperties
.MaskSettings .AllowMouseWheel
ASP.NET MVC Extensions MVCxButtonEdit
.MaskSettings .AllowMouseWheel
MVCxButtonEditProperties
.MaskSettings .AllowMouseWheel
MVCxColumnButtonEditProperties
.MaskSettings .AllowMouseWheel
MVCxColumnTextBoxProperties
.MaskSettings .AllowMouseWheel
MVCxTextBox
.MaskSettings .AllowMouseWheel
MVCxTextBoxProperties
.MaskSettings .AllowMouseWheel

Remarks

When an editor has focus and the AllowMouseWheel property is set to true, an end-user can change the editor’s masked value by using the mouse wheel. In this case, each mouse wheel action (up or down) changes the editor’s value.

Set the AllowMouseWheel property to false to disable changing the masked value using the mouse wheel.

See Also