Interface Clipboard
access this type via: os.Clipboard (provides, requires or uses)
This API provides access to the copy/paste clipboard of the operating system.
Functions
void setContent(char content[])
char[] getContent()
void setContent(char content[])
Sets the clipboard to contain the given text content.
content The text content to place on the clipboard.
char[] getContent()
Gets the current clipboard content, if it can be represented as text (or null otherwise).
returns: The text content on the clipboard.