NumericEdit.MaxDecimalDigitCount Property
In This Article
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
C#
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:
See Also