Version

MaskMode Enumeration

Used for specifying the mode to be applied when getting text from a masked editor.
Syntax
'Declaration
 
Public Enum MaskMode 
   Inherits System.Enum
public enum MaskMode : System.Enum 
Members
MemberDescription
IncludeBothInclude both Prompt Characters and Literals. Text will be returned exactly as it appears in the object when a cell is in edit mode. Data, prompt character and literals will all be included.
IncludeLiterals(Default) Include Literal Characters. Data and literal characters will be returned. Prompt characters will be omitted.
IncludeLiteralsWithPaddingInclude Literals With Padding. Prompt characters will be converted into pad characters (by default they are spaces, which are then included with literals and data when text is returned.
IncludePromptCharsInclude Prompt Characters. Data and prompt characters will be returned. Literals will be omitted.
RawRaw Data Mode. Only significant characters will be returned. Any prompt characters or literals will be excluded from the text.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also