Clipboard::SetText Method (String^, TextDataFormat)
Clears the Clipboard and then adds text data in the format indicated by the specified TextDataFormat value.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Parameters
- text
-
Type:
System::String^
The text to add to the Clipboard.
- format
-
Type:
System.Windows.Forms::TextDataFormat
One of the TextDataFormat values.
| Exception | Condition |
|---|---|
| ExternalException | The Clipboard could not be cleared. This typically occurs when the Clipboard is being used by another process. |
| ThreadStateException | The current thread is not in single-threaded apartment (STA) mode. Add the STAThreadAttribute to your application's Main method. |
| ArgumentNullException | text is null or Empty. |
| InvalidEnumArgumentException | format is not a valid TextDataFormat value. |
To retrieve text data from the Clipboard, first use the ContainsText method to determine whether the Clipboard contains text data before retrieving it with the GetText method.
Note |
|---|
The Clipboard class can only be used in threads set to single thread apartment (STA) mode. To use this class, ensure that your Main method is marked with the STAThreadAttribute attribute. |
for adding text data to the system Clipboard. Associated enumeration: UIPermissionClipboard::OwnClipboard
Available since 2.0
