Core Function ClipGet
From Sputnik Wiki
(Difference between revisions)
(Created page with "<pre> ClipGet( <type> ) </pre> === Description === Get data from the clipboard === Parameters === ==== type ==== The type of data to get <pre> Text - Any text </pre> === Re...") |
m (1 revision) |
Revision as of 21:40, 11 August 2014
ClipGet( <type> )
Contents |
Description
Get data from the clipboard
Parameters
type
The type of data to get
Text - Any text
Return Value
Success: Returns the correct type of data if available.
Failure: Returns 0 if error occurs.
Example
// Get current text from clipboard my $Current = ClipGet( "Text" ); println("Current clipboard text BELOW"); println($Current); println("Current clipboard text ABOVE"); println(""); // Set some text to clipboard ClipSet( "Text", "Hello World!" ); // Get current text from clipboard again my $Current = ClipGet( "Text" ); println("NOW Current clipboard text BELOW"); println($Current); println("NOW Current clipboard text ABOVE");