message class : Clip(bool) setter
Description
Sets a value that indicates whether to copy the message to the clipboard.
Syntax
instance.Clip = value;
Assigned value
Class | Description |
bool | Whether to copy the message to the clipboard. |
Return value
None.
Sample code
1: | message instance = new message(); |
2: | instance.Clip = false; // This instance does not clip message. |
Notes
Sets true, the displayed message is saved in the clipboard. Sets false, nothing happens.
Instances of the message class save messages to the clipboard by default.
Links for reference
None.