10

I'm trying to make a semi-complex masking textbox in Delphi 7. I'm having problems in that I can't find any kind of reference for what each character in a mask means. All I can find are examples.

Is there a reference somewhere?

Earlz
  • 62,085
  • 98
  • 303
  • 499

1 Answers1

18

I think this topic from the documentation has the most complete list of characters.

The same topic can be found in your Delphi 7 help file by searching for TMaskEdit. I just checked the Delphi 6 help file and the list of mask characters is identical to the XE2 version so, as @afrazier says, nothing much appears to have changed.

David Heffernan
  • 601,492
  • 42
  • 1,072
  • 1,490
  • 4
    +1 - As far as I know, this hasn't changed much since Delphi 7. It's in the D7 Help under `TEditMask type` in the `MaskUtils` Unit. – afrazier Oct 10 '11 at 20:08