Application:getClipboard

From GiderosMobile
Revision as of 03:41, 5 December 2020 by MoKaLux (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Available since: Gideros 2011.6
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