Difference between revisions of "Application:setClipboard"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2020.4<br/> '''Class:''' Application<br/> === Description === Stores data to the clipboard. <source lang="lua"> (bool) = applicat...")
 
Line 6: Line 6:
 
Stores data to the clipboard.
 
Stores data to the clipboard.
 
<source lang="lua">
 
<source lang="lua">
(bool) = application:setClipboard(data)
+
(bool) = application:setClipboard(data, type, callback)
 
</source>
 
</source>
  
 
=== Parameters ===
 
=== Parameters ===
 
'''data''' (string) the data to store in the clipboard<br/>
 
'''data''' (string) the data to store in the clipboard<br/>
 +
'''type''' (string) the mime type of data to be stored<br/>
 +
'''callback''' (function) if provided,enable the async form. The given function will be called with the results of the call<br/>
  
 
=== Return values ===
 
=== Return values ===

Revision as of 16:24, 11 June 2021

Available since: Gideros 2020.4
Class: Application

Description

Stores data to the clipboard.

(bool) = application:setClipboard(data, type, callback)

Parameters

data (string) the data to store in the clipboard
type (string) the mime type of data to be stored
callback (function) if provided,enable the async form. The given function will be called with the results of the call

Return values

Returns (bool) has the clipboard some data

Example

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