MaskedTextBox.CutCopyMaskFormat Property
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.
Gets or sets a value that determines whether literals and prompt characters are copied to the clipboard.
public:
property System::Windows::Forms::MaskFormat CutCopyMaskFormat { System::Windows::Forms::MaskFormat get(); void set(System::Windows::Forms::MaskFormat value); };
public System.Windows.Forms.MaskFormat CutCopyMaskFormat { get; set; }
member this.CutCopyMaskFormat : System.Windows.Forms.MaskFormat with get, set
Public Property CutCopyMaskFormat As MaskFormat
Property Value
One of the MaskFormat values. The default is IncludeLiterals.
Exceptions
Property set with a MaskFormat value that is not valid.
Remarks
The CutCopyMaskFormat property determines how text, selected within the MaskedTextBox control, is interpreted when it is copied to the clipboard or retrieved through the SelectedText property. Specifically, it determines whether literal characters, prompt characters, or both are included when selected text is accessed. When prompt characters are excluded, they are transformed into spaces in the copied string.
Note
The TextMaskFormat property serves a similar purpose with respect to how the Text property is interpreted.