I am trying to figure out how to set a mask on a textedit for a 3 decimal place number, such as .123. I do not want to allow 1.234. I have been trying everything that I can think of but I'm not having any luck. Any suggestions would be great!
Mask on textedit to only allow input of a 3 decimal place number - such as .123
Answers approved by DevExpress Support
Try using a RegEx mask such as .\d{3}
Thanks so much Brendon. RegEx has always been been a thorn in my side in figuring out. lol But that worked like a charm!