|
|
|
|
Functions
Events
MioScript Reference
|
|
Syntax
| system.clipboard.get.text() |
Parameters
None.
Return value
| Text stored in the clipboard |
Description
Returns the text stored in the clipboard.
You should check if the format stored in the clipboard is text with system.clipboard.get.format |
MioScript Sample Code
if(system.clipboard.get.format() = "text")
alert(system.clipboard.get.text())
if.end |
|
|
|