Clipboard

external interface Clipboard

Functions

availableFormats
Link copied to clipboard
abstract fun availableFormats(type: String = definedExternally): Array<String>
clear
Link copied to clipboard
abstract fun clear(type: String = definedExternally)
has
Link copied to clipboard
abstract fun has(format: String, type: String = definedExternally): Boolean
read
Link copied to clipboard
abstract fun read(format: String): String
readBookmark
Link copied to clipboard
abstract fun readBookmark(): ReadBookmark
readBuffer
Link copied to clipboard
abstract fun readBuffer(format: String): Buffer
readFindText
Link copied to clipboard
abstract fun readFindText(): String
readHTML
Link copied to clipboard
abstract fun readHTML(type: String = definedExternally): String
readImage
Link copied to clipboard
abstract fun readImage(type: String = definedExternally): NativeImage
readRTF
Link copied to clipboard
abstract fun readRTF(type: String = definedExternally): String
readText
Link copied to clipboard
abstract fun readText(type: String = definedExternally): String
write
Link copied to clipboard
abstract fun write(data: Data, type: String = definedExternally)
writeBookmark
Link copied to clipboard
abstract fun writeBookmark(title: String, url: String, type: String = definedExternally)
writeBuffer
Link copied to clipboard
abstract fun writeBuffer(format: String, buffer: Buffer, type: String = definedExternally)
writeFindText
Link copied to clipboard
abstract fun writeFindText(text: String)
writeHTML
Link copied to clipboard
abstract fun writeHTML(markup: String, type: String = definedExternally)
writeImage
Link copied to clipboard
abstract fun writeImage(image: NativeImage, type: String = definedExternally)
writeRTF
Link copied to clipboard
abstract fun writeRTF(text: String, type: String = definedExternally)
writeText
Link copied to clipboard
abstract fun writeText(text: String, type: String = definedExternally)