Clipboard

The Clipboard interface of the Clipboard API provides read and write access to the contents of the system clipboard. Available only in secure contexts.

MDN Reference

Functions

Link copied to clipboard
Link copied to clipboard
suspend fun read(): ClipboardItems

The read() method of the Clipboard interface requests a copy of the clipboard's contents, fulfilling the returned Promise with the data.

Link copied to clipboard
Link copied to clipboard
suspend fun readText(): String

The readText() method of the Clipboard interface returns a Promise which fulfills with a copy of the textual contents of the system clipboard.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
suspend fun write(data: ClipboardItems)

The write() method of the Clipboard interface writes arbitrary ClipboardItem data such as images and text to the clipboard, fulfilling the returned Promise on completion.

Link copied to clipboard
Link copied to clipboard
suspend fun writeText(data: String)

The writeText() method of the Clipboard interface writes the specified text to the system clipboard, returning a Promise that is resolved once the system clipboard has been updated.

Link copied to clipboard