I am using an UltraMaskedEdit. I have looked through the InputMask property documentation but cannot find the prompt character propery for a required Alpha Only (a-z or A-Z). Prompt Characters '&', 'A', 'a', and 'C' allow digits. The '?' prompt character is a letter placeholder but entry is not required. My end goal is tor create a Canadian Postal Code input mask which is of the format 'A#A #A#' - unless something like this already exists and I completely missed it.
My thanks in advance for any help that can be provided.
I know this thread is over a year old, but I'd love to bump it to see if someone knows the answer. This is the EXACT same situation (a Canadian postal code). Why are there no "input required" letter placeholders?
Thanks,Kyle
I don't know the reason why there is no alpha-only specifier but you could use the 'A' specifier ad handle the KeyPress event and set the Handled property of the event args to true if the character is numeric, thus preventing numeric entry.