Selection Support in Xamarin NumericUpDown (SfNumericUpDown)

19 May 20211 minute to read

The SelectAllOnFocus property is used to specify whether the text should be selected when the control gets the focus.

<numeric:SfNumericUpDown SelectAllOnFocus="True" Value="12345"/>
SfNumericUpDown NumericUpDown=new SfNumericUpDown();
NumericUpDown.Value=12345;
NumericUpDown.SelectAllOnFocus = true;
this.Content = NumericUpDown;

Display the SfNumericUpDown control with Selection