I have a cxMaskEdit that I want to use for input of (for example) only numbers like:
DelphicxMaskEdit1.Properties.MaskKind := TcxEditMaskKind.emkRegExpr;
cxMaskEdit1.Properties.EditMask := '[0-9]+';
When running this code I cannot use Ctrl+A to select the text of the control. Copy and paste (Ctrl+C & Ctrl+V) works just fine.
For a cxMaskEdit with no mask applied Ctrl+A works.
If I modify the regex to allow one more character (by adding a dot to the expression) like:
DelphicxMaskEdit2.Properties.MaskKind := TcxEditMaskKind.emkRegExpr;
cxMaskEdit2.Properties.EditMask := '[0-9]+.';
then Ctrl+A works.
Hello,
Thank you for your message. I have reproduced this problem. I am forwarding this issue to our developers for further processing.
You will receive an automatic message once the status of this issue is changed.