Hi!
I have this mask:
control.MaskEntry.Mask = "999,900,000 $ ";
control.MaskEntry.Culture = new CultureInfo("es-ES");
This is the mask that show in entry: ---.---.--- €
I want a mask to format value between 10000 (ten thousand) and 99999999 millions. For example, while I write value in entry, the mask would change like this:
1-.--- €
10.--- €
10.0-- €
10.00- €
10.000 €
100.000 €
1.000.000 €
It's possible whit some mask? does the control sfmaskededit allow this?
Thanks a lot
Thanks for your reply. I think with the SfNumericTextBox I can get some of what I want. Thank you!
Thank you very much for the example. I had started to include code just like yours in my app. So this component is the correct one for me. Greetings