Hi bCliks,
Query: How to get the integer value from SfNumericUpDown control?
We can get the value of SfNumericUpDown by using the following code example,
Code Example,
SfNumericUpDown adult=new SfNumericUpDown();
int d = (int)Convert.ToDouble(adult.Value.ToString()); |
Regards,
Hemalatha M.R