2013-09-09 07:35:57 +00:00
|
|
|
# clipboard
|
2013-08-14 22:43:35 +00:00
|
|
|
|
2014-06-05 06:48:12 +00:00
|
|
|
The `clipboard` provides methods to do copy/paste operations. An example of
|
|
|
|
writing a string to clipboard:
|
2013-08-14 22:43:35 +00:00
|
|
|
|
|
|
|
```javascript
|
|
|
|
var clipboard = require('clipboard');
|
|
|
|
clipboard.writeText('Example String');
|
|
|
|
```
|
|
|
|
|
2014-06-05 06:48:12 +00:00
|
|
|
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-14 22:43:35 +00:00
|
|
|
|
|
|
|
Returns the content in clipboard as plain text.
|
|
|
|
|
2014-06-05 06:48:12 +00:00
|
|
|
## clipboard.writeText(text[, type])
|
2013-08-14 22:43:35 +00:00
|
|
|
|
|
|
|
* `text` String
|
2014-06-05 06:48:12 +00:00
|
|
|
* `type` String
|
2013-08-14 22:43:35 +00:00
|
|
|
|
|
|
|
Writes the `text` into clipboard as plain text.
|
|
|
|
|
2015-03-26 04:53:48 +00:00
|
|
|
## clipboard.readImage([type])
|
|
|
|
|
|
|
|
* `type` String
|
|
|
|
|
|
|
|
Returns the content in clipboard as [NativeImage](native-image.md).
|
|
|
|
|
|
|
|
## clipboard.writeImage(image[, type])
|
|
|
|
|
|
|
|
* `image` [NativeImage](native-image.md)
|
|
|
|
* `type` String
|
|
|
|
|
|
|
|
Writes the `image` into clipboard.
|
|
|
|
|
2014-06-05 06:48:12 +00:00
|
|
|
## clipboard.clear([type])
|
|
|
|
|
|
|
|
* `type` String
|
2013-08-14 22:43:35 +00:00
|
|
|
|
|
|
|
Clears everything in clipboard.
|
|
|
|
|
2014-06-05 06:48:12 +00:00
|
|
|
## clipboard.has(format[, type])
|
2013-08-14 22:43:35 +00:00
|
|
|
|
2014-06-05 06:48:12 +00:00
|
|
|
* `format` String
|
2013-08-14 22:43:35 +00:00
|
|
|
* `type` String
|
|
|
|
|
2014-06-05 06:48:12 +00:00
|
|
|
Returns whether clipboard has data in specified `format`.
|
2013-08-14 22:43:35 +00:00
|
|
|
|
|
|
|
**Note:** This API is experimental and could be removed in future.
|
|
|
|
|
2014-06-05 06:48:12 +00:00
|
|
|
## clipboard.read(format[, type])
|
2013-08-14 22:43:35 +00:00
|
|
|
|
2014-06-05 06:48:12 +00:00
|
|
|
* `format` String
|
2013-08-14 22:43:35 +00:00
|
|
|
* `type` String
|
|
|
|
|
2014-06-05 06:48:12 +00:00
|
|
|
Reads the data in clipboard of the `format`.
|
2013-08-14 22:43:35 +00:00
|
|
|
|
|
|
|
**Note:** This API is experimental and could be removed in future.
|