Category / Section
How to restrict the decimal values in SfNumericUpDown?
1 min read
In SfNumericUpDown, decimal values can be restricted by using the MaximumNumberDecimalDigits property.
XAML
<Input:SfNumericUpDown Name="numupdwn" MaximumNumberDecimalDigits="0"> </Input:SfNumericUpDown>
C#
numupdwn.MaximumNumberDecimalDigits = 0;