Articles in this section
Category / Section

How to modify number of decimal digits display?

1 min read

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:

../SharedFolder/Images/MaximumDecimalDigits.png

NumericTextBox MaximumNumberDecimalDigits

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied