Application:getClipboard

From GiderosMobile
Revision as of 04:44, 5 December 2020 by MoKaLux (talk | contribs)

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