Difference between revisions of "clipboard.getText"
Jump to navigation
Jump to search
Jimbauwens (talk | contribs) (Created page with "clipboard.'''getText''' is a function that is part of the Clipboard Library. <br> The function allows you to retrieve the content of the clipboard. == Syntax == clipb...") |
Jimbauwens (talk | contribs) m (moved clipboard.setText to clipboard.getText) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
clipboard.'''getText''' is a function that is part of the Clipboard Library. | clipboard.'''getText''' is a function that is part of the Clipboard Library. | ||
− | |||
− | |||
− | + | The function allows you to retrieve the content of the clipboard.<br> | |
− | + | == Syntax == | |
− | returns the content of the clipboard in the form of a string. | + | clipboard.'''getText()'''<br> returns the content of the clipboard in the form of a string. |
== Example == | == Example == | ||
Line 30: | Line 28: | ||
*[[clipboard.addText]]<br> | *[[clipboard.addText]]<br> | ||
− | + | ||
+ | [[Category:clipboard]] |
Latest revision as of 09:16, 25 May 2011
clipboard.getText is a function that is part of the Clipboard Library.
The function allows you to retrieve the content of the clipboard.
Syntax
clipboard.getText()
returns the content of the clipboard in the form of a string.
Example
--Clipboard test
function on.paint(gc)
clip = clipboard.getText()
gc:drawString(clip, 100, 100)
end
function on.charIn(ch)
clipboard.addText(ch)
platform.window:invalidate() -- recall graph engine
end
This code will read the content of the clipboard and print it on the screen. When you press a key, it will put the key value in the clipboard.