Is there any way, I can enter decimal input in UltraNumericEditor and when focus is out to that control, the value will automatically be rounded?
Thanks,
The MaskInput property contros user input, so you could set it to something like: "-nn.nnnn"
This would allow the user to enter up to 4 digits after the decimal. Then set the FormatString, which controls the display when not in edit mode. So you could set it to something like: "##.##"
This would display only 2 digits when not in edit mode and it would round the value.
How can you display (in non-edit mode) only the decimals the user input? For example, if you have the masked edit setup to allow up to 9 decimal places but the user only enters 4, how can you do that using the FormatString property? For example:
Edit Mode: 0.931400000
Display Mode: 0.9314
What would the FormatString property be?