Difference between revisions of "Application:getClipboard"

From GiderosMobile
Line 5: Line 5:
 
Returns the data and its type stored in the clipboard.
 
Returns the data and its type stored in the clipboard.
 
<source lang="lua">
 
<source lang="lua">
(data) (type) = application:getClipboard()
+
(data) (type) = application:getClipboard(type,callback)
 
</source>
 
</source>
  

Revision as of 15:21, 11 June 2021

Available since: Gideros 2020.4
Class: Application

Description

Returns the data and its type stored in the clipboard.

(data) (type) = application:getClipboard(type,callback)

Return values

Returns (string) the data in the clipboard
Returns (string) the type of the data

Example

application:setClipboard("Gideros rocks!")
local data, type = application:getClipboard()
print(data, type) --> Gideros rocks!	text/plain