Application:setClipboard

From GiderosMobile
Revision as of 03:51, 5 December 2020 by MoKaLux (talk | contribs) (Created page with "__NOTOC__ '''Available since:''' Gideros 2020.4<br/> '''Class:''' Application<br/> === Description === Stores data to the clipboard. <source lang="lua"> (bool) = applicat...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Available since: Gideros 2020.4
Class: Application

Description

Stores data to the clipboard.

(bool) = application:setClipboard(data)

Parameters

data (string) the data to store in the clipboard

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