hiSetClipboard
hiSetClipboard(t_text[s_mode] ) =>t / nil
Description
Sets the text to be pushed to the system clipboard.
Arguments
Values Returned
Examples
hiGetClipboard()
=> ""
hiSetClipboard( "text to copy" )
=> t
hiGetClipboard()
=> "text to copy"
hiGetClipboard( 'clipboard )
=> "" ; defaults to 'selection, so 'clipboard is not set
hiSetClipboard( "some stuff for the clipboard" 'clipboard)
=> t
hiGetClipboard()
=> "text to copy"
hiGetClipboard( 'clipboard )
=> "some stuff for the clipboard"
hiGetClipboard( 'selection )
=> "text to copy"
hiClearClipboard()
=> t
hiGetClipboard()
=> ""
Related Topics
Return to top