hiClearClipboard
hiClearClipboard( [s_mode] ) =>t/ nil
Description
Clears the text stored in the system clipboard.
Argument
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