How to modify number of decimal digits display?
To provide decimal digits to NumericTextBox, follow the given steps:
Step 1: Create the NumericTextBox sample and include the necessary source files.
Step 2: First create an instance for NumericTextBox.
Step 3: By using the object, set maximumNumberDecimalDigits property to any numeric value. And set the Contentview.
Step 4: And by using StackLayout add the children numericTextBox.
Code Snippet
public class NumericTextBox { public NumericTextBox() { SfNumericTextBox numericTextBox = new SfNumericTextBox(); numericTextBox.Value=15.874694; numericTextBox.MaximumNumberDecimalDigits = 5; this.Content = GetNumeric(); } private StackLayout GetNumeric() { var mainStack = new StackLayout { Children = { numericTextBox } }; return mainStack; } } |
The following image provides maximumNumberDecimalDigits to NumericTextBox:
NumericTextBox MaximumNumberDecimalDigits