Application:setClipboard

From GiderosMobile
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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