Skip to main content

TextEdit.AllowSpinOnMouseWheel Property

Gets or sets whether or not a value can be changed by spinning the mouse wheel. This is a dependency property.

Namespace: DevExpress.WinUI.Editors

Assembly: DevExpress.WinUI.Editors.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

[DP(true)]
public bool AllowSpinOnMouseWheel { get; set; }

Property Value

Type Description
Boolean

true, if a value can be changed by spinning the mouse wheel; otherwise, false.

Remarks

<dxe:TextEdit Text="5.30" AllowSpinOnMouseWheel="True">
    <dxe:TextEdit.TextInputSettings>
        <dxe:TextInputMaskSettings MaskType="Numeric" Mask="f"/>
    </dxe:TextEdit.TextInputSettings>
</dxe:TextEdit>
See Also