Core Function ClipGet

From Sputnik Wiki
Revision as of 20:24, 30 August 2015 by UberFoX (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
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 null 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");
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox