MaskFormat Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines how to format the text inside of a MaskedTextBox.
public enum class MaskFormat
public enum MaskFormat
type MaskFormat =
Public Enum MaskFormat
- Inheritance
Fields
Name | Value | Description |
---|---|---|
ExcludePromptAndLiterals | 0 | Return only text input by the user. |
IncludePrompt | 1 | Return text input by the user as well as any instances of the prompt character. |
IncludeLiterals | 2 | Return text input by the user as well as any literal characters defined in the mask. |
IncludePromptAndLiterals | 3 | Return text input by the user as well as any literal characters defined in the mask and any instances of the prompt character. |
Remarks
This enumeration is used by CutCopyMaskFormat and TextMaskFormat to control how text is returned - in the first case, by performing a cut and copy operation, and in the second place, by using the Text property.