MaskFormat Enum

Definition

Defines how to format the text inside of a MaskedTextBox.

public enum class MaskFormat
public enum MaskFormat
type MaskFormat = 
Public Enum MaskFormat
Inheritance
MaskFormat

Fields

ExcludePromptAndLiterals 0

Return only text input by the user.

IncludeLiterals 2

Return text input by the user as well as any literal characters defined in the mask.

IncludePrompt 1

Return text input by the user as well as any instances of the prompt character.

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.

Applies to

See also