Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
40
Formatting the UltraNumericEditor
posted

Is there a way to configure the UltraNumericEditor so that it will retain any trailing zeros a user enters?  For example if the user enters "1.20" and tabs away from the control, it will display "1.20".  Also, if the user enters "1.200"  it will display "1.200".

I would like to maintain this behavior even if the Value property is set in this manner:

ultraNumericEditor.Value = "1.20"  -> control displays "1.20"

ultraNumericEditor.Value = "1.200" -> control displays "1.200"