

| Type | Description | |||
| Long | A long expression that indicates the ASCII code for the masking character. | 
The default masking character is '_' . Use the Mask property to filter characters during data input.
For instance, the following sample uses '0' for masking numbers into a masked number field:
With Editor1
    .EditType = EXEDITORSLibCtl.Mask
    .Mask = "####"
    .MaskChar = Asc("0")
    .Value = 10
End With