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

NumericEdit.MaxDecimalDigitCount Property

Gets or set the maximum number of digits after the decimal separator.

Namespace: DevExpress.XamarinForms.Editors

Assembly: DevExpress.XamarinForms.Editors.dll

NuGet Package: DevExpress.XamarinForms.Editors

Declaration

public int MaxDecimalDigitCount { get; set; }

Property Value

Type Description
Int32

An integer value that specifies the 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