Retrieves text from the clipboard.
ClipGet ( )
When multiple selecting file/dir are stored in the clipboard, the filename/dirname are returned as texts separated by @LF.
#include <MsgBoxConstants.au3>
Example()
Func Example()
; Retrieve the data stored in the clipboard.
Local $sData= ClipGet ()
; Display the data returned by ClipGet.
MsgBox ($MB_SYSTEMMODAL,"","The following data is stored in the clipboard: "&@CRLF &$sData)
; Add new data to the clipboard.
ClipPut ("A new string added to the clipboard.")
; Retrieve the data stored in the clipboard.
$sData= ClipGet ()
; Display the data returned by ClipGet.
MsgBox ($MB_SYSTEMMODAL,"","The following data is now stored in the clipboard: "&@CRLF &$sData)
EndFunc ;==>Example