Difference between revisions of "Application:getClipboard"

From GiderosMobile
(Created page with "'''Available since:''' Gideros 2011.6<br/> '''Class:''' Application<br/> === Description === Returns the data and its type stored in the clipboard. <source lang="lua"> (d...")
 
Line 1: Line 1:
'''Available since:''' Gideros 2011.6<br/>
+
'''Available since:''' Gideros 2020.4<br/>
 
'''Class:''' [[Application]]<br/>
 
'''Class:''' [[Application]]<br/>
  

Revision as of 03:44, 5 December 2020

Available since: Gideros 2020.4
Class: Application

Description

Returns the data and its type stored in the clipboard.

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

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