property MaskEdit.Value ([ClipModeIncludeLiteral as Variant]) as String
Retrieves the control's value with or without literals.

TypeDescription
ClipModeIncludeLiteral as Variant A ClipModeIncludeLiteralEnum expression that specifies the way the control's text is retrieved.
String A String expression that defines the control's value base on the ClipModeIncludeLiteral parameter.
The Value property indicates the control's text or value. The Mask property specifies the control's mask. Use the Text property to change programmatically the control's text. The TextIncludeLiterals property specifies the way the Text property get/set the control's text. For instance, if you do not need to get the placeholders characters in the Text property, set the TextIncludeLiterals property on exClipModeLiteralsInclude before calling the Text property. The Value property is equivalent with Text/TextIncludeLiterals property. The control fires the Change event if the user changes the control's text. The TextIncludeLiteralsLoseFocus property specifies how the control's field is shown when it loses the focus. The AllowEmptyValue property specifies whether the control handles empty values.