The clipboard module is designed to provide access to the
Windows clipboard.
The Clipboard class
- GetClipboard() - get the clipboard object
Attribute |
Access |
Type |
Description |
text |
R/W |
string |
the clipboard text content |
Method |
Returns |
Description |
clear() |
1 |
clears the clipboard |
Example 1: Clear Clipboard
clip=GetClipboard()
txt=clip.text
clip.clear()
|