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
160
UltranumericEditor with MaskInput showing to many digits when negative sign is in mask
posted

Using the 12.2 version of the WinForm controls.  I have a UltraNumericEditor on a form.  In code I set the following - 

this.ultraNumericEditor1.MaskInput = "-n.n";
this.ultraNumericEditor1.Value = 12345.12365;
At runtime the control displays 45.1 instead of 5.1.  If I remove the negative sign from the mask it correctly displays 5.1.
Is there a way to fix this?