Skip to main content

NumericEdit.MaxDecimalDigitCount Property

Gets or set the maximum number of digits after the decimal separator. This is a bindable property.

Namespace: DevExpress.Maui.Editors

Assembly: DevExpress.Maui.Editors.dll

NuGet Package: DevExpress.Maui.Editors

Declaration

public int MaxDecimalDigitCount { get; set; }

Property Value

Type Default Description
Int32 -1

The maximum number of digits displayed after the decimal separator.

Remarks

Use the MaxDecimalDigitCount property to specify how many digits after the decimal separator the editor can display and users can input. For example, you can set this property to 0 to not insert a decimal separator:

<dxe:NumericEdit x:Name="numericEdit" MaxDecimalDigitCount="0"/>
See Also