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...")
(No difference)

Revision as of 04:51, 5 December 2020

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