Difference between revisions of "Application:setClipboard"

From GiderosMobile
m (Text replacement - "</source" to "</syntaxhighlight")
 
(One intermediate revision by the same user not shown)
Line 5: Line 5:
 
=== Description ===
 
=== Description ===
 
Stores data to the clipboard.
 
Stores data to the clipboard.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(bool) = application:setClipboard(data, type, callback)
 
(bool) = application:setClipboard(data, type, callback)
</source>
+
</syntaxhighlight>
  
 
=== Parameters ===
 
=== Parameters ===
Line 18: Line 18:
  
 
=== Example ===
 
=== Example ===
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
application:setClipboard("Gideros rocks!")
 
application:setClipboard("Gideros rocks!")
 
local data, type = application:getClipboard()
 
local data, type = application:getClipboard()
 
print(data, type) --> Gideros rocks! text/plain
 
print(data, type) --> Gideros rocks! text/plain
</source>
+
</syntaxhighlight>
  
 
{{Application}}
 
{{Application}}

Latest revision as of 17:55, 12 July 2023

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