Core Function ClipGet

From Sputnik Wiki
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