electron/docs/api/clipboard.md

56 строки
1.1 KiB
Markdown
Исходник Обычный вид История

2013-09-09 11:35:57 +04:00
# clipboard
2013-08-15 02:43:35 +04:00
The `clipboard` provides methods to do copy/paste operations. An example of
writing a string to clipboard:
2013-08-15 02:43:35 +04:00
```javascript
var clipboard = require('clipboard');
clipboard.writeText('Example String');
```
On X Window systems, there is also a selection clipboard, to manipulate in it
you need to pass `selection` to each method:
```javascript
var clipboard = require('clipboard');
clipboard.writeText('Example String', 'selection');
console.log(clipboard.readText('selection'));
```
## clipboard.readText([type])
* `type` String
2013-08-15 02:43:35 +04:00
Returns the content in clipboard as plain text.
## clipboard.writeText(text[, type])
2013-08-15 02:43:35 +04:00
* `text` String
* `type` String
2013-08-15 02:43:35 +04:00
Writes the `text` into clipboard as plain text.
## clipboard.clear([type])
* `type` String
2013-08-15 02:43:35 +04:00
Clears everything in clipboard.
## clipboard.has(format[, type])
2013-08-15 02:43:35 +04:00
* `format` String
2013-08-15 02:43:35 +04:00
* `type` String
Returns whether clipboard has data in specified `format`.
2013-08-15 02:43:35 +04:00
**Note:** This API is experimental and could be removed in future.
## clipboard.read(format[, type])
2013-08-15 02:43:35 +04:00
* `format` String
2013-08-15 02:43:35 +04:00
* `type` String
Reads the data in clipboard of the `format`.
2013-08-15 02:43:35 +04:00
**Note:** This API is experimental and could be removed in future.