| Syntax |
clipboard.putValue (value)
|
| Params |
value is the data you wish to put into the Clipboard.
|
| Action |
Places value into the System Clipboard and sets its type appropriately.
|
| Returns |
True
|
| Examples |
clipboard.putValue (string (infinity))
» True // Places maximum value of number into Clipboard as TEXT
|
| Notes |
If value is binary, the type is set to the binary type of value; otherwise it is set to typeOf (value).
This verb is implemented as a script.
|
| See Also |
clipboard.getValue
clipboard.get
clipboard.put
setBinaryType
getBinaryType
|