2013-09-09 07:35:57 +00:00
|
|
|
# clipboard
|
2013-08-14 22:43:35 +00:00
|
|
|
|
2016-04-21 22:39:12 +00:00
|
|
|
> Perform copy and paste operations on the system clipboard.
|
2016-04-21 22:35:29 +00:00
|
|
|
|
2015-08-25 12:16:20 +00:00
|
|
|
The following example shows how to write a string to the clipboard:
|
2013-08-14 22:43:35 +00:00
|
|
|
|
|
|
|
```javascript
|
2016-05-10 16:26:38 +00:00
|
|
|
const {clipboard} = require('electron');
|
2013-08-14 22:43:35 +00:00
|
|
|
clipboard.writeText('Example String');
|
|
|
|
```
|
|
|
|
|
2015-07-23 17:01:00 +00:00
|
|
|
On X Window systems, there is also a selection clipboard. To manipulate it
|
2014-06-05 06:48:12 +00:00
|
|
|
you need to pass `selection` to each method:
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
clipboard.writeText('Example String', 'selection');
|
|
|
|
console.log(clipboard.readText('selection'));
|
|
|
|
```
|
|
|
|
|
2015-08-24 21:35:43 +00:00
|
|
|
## Methods
|
2014-06-05 06:48:12 +00:00
|
|
|
|
2015-08-26 23:28:44 +00:00
|
|
|
The `clipboard` module has the following methods:
|
2015-08-24 21:35:43 +00:00
|
|
|
|
2015-08-28 17:34:48 +00:00
|
|
|
**Note:** Experimental APIs are marked as such and could be removed in future.
|
|
|
|
|
2015-08-24 21:35:43 +00:00
|
|
|
### `clipboard.readText([type])`
|
|
|
|
|
|
|
|
* `type` String (optional)
|
2013-08-14 22:43:35 +00:00
|
|
|
|
2015-07-23 17:01:00 +00:00
|
|
|
Returns the content in the clipboard as plain text.
|
2013-08-14 22:43:35 +00:00
|
|
|
|
2015-08-24 21:35:43 +00:00
|
|
|
### `clipboard.writeText(text[, type])`
|
2013-08-14 22:43:35 +00:00
|
|
|
|
|
|
|
* `text` String
|
2015-08-24 21:35:43 +00:00
|
|
|
* `type` String (optional)
|
2013-08-14 22:43:35 +00:00
|
|
|
|
2015-07-23 17:01:00 +00:00
|
|
|
Writes the `text` into the clipboard as plain text.
|
2013-08-14 22:43:35 +00:00
|
|
|
|
2015-08-24 21:35:43 +00:00
|
|
|
### `clipboard.readHtml([type])`
|
2015-05-22 09:29:11 +00:00
|
|
|
|
2015-08-24 21:35:43 +00:00
|
|
|
* `type` String (optional)
|
2015-05-22 09:29:11 +00:00
|
|
|
|
2015-07-23 17:01:00 +00:00
|
|
|
Returns the content in the clipboard as markup.
|
2015-05-22 09:29:11 +00:00
|
|
|
|
2015-08-24 21:35:43 +00:00
|
|
|
### `clipboard.writeHtml(markup[, type])`
|
2015-05-22 09:29:11 +00:00
|
|
|
|
|
|
|
* `markup` String
|
2015-08-24 21:35:43 +00:00
|
|
|
* `type` String (optional)
|
2015-05-22 09:29:11 +00:00
|
|
|
|
2015-08-24 21:35:43 +00:00
|
|
|
Writes `markup` to the clipboard.
|
2015-05-22 09:29:11 +00:00
|
|
|
|
2015-08-24 21:35:43 +00:00
|
|
|
### `clipboard.readImage([type])`
|
2015-03-26 04:53:48 +00:00
|
|
|
|
2015-08-24 21:35:43 +00:00
|
|
|
* `type` String (optional)
|
2015-03-26 04:53:48 +00:00
|
|
|
|
2015-07-23 17:01:00 +00:00
|
|
|
Returns the content in the clipboard as a [NativeImage](native-image.md).
|
2015-03-26 04:53:48 +00:00
|
|
|
|
2015-08-24 21:35:43 +00:00
|
|
|
### `clipboard.writeImage(image[, type])`
|
2015-03-26 04:53:48 +00:00
|
|
|
|
|
|
|
* `image` [NativeImage](native-image.md)
|
2015-08-24 21:35:43 +00:00
|
|
|
* `type` String (optional)
|
|
|
|
|
|
|
|
Writes `image` to the clipboard.
|
2015-03-26 04:53:48 +00:00
|
|
|
|
2016-02-05 08:06:21 +00:00
|
|
|
### `clipboard.readRtf([type])`
|
|
|
|
|
|
|
|
* `type` String (optional)
|
|
|
|
|
|
|
|
Returns the content in the clipboard as RTF.
|
|
|
|
|
|
|
|
### `clipboard.writeRtf(text[, type])`
|
2016-02-04 18:38:47 +00:00
|
|
|
|
|
|
|
* `text` String
|
2016-02-05 08:06:21 +00:00
|
|
|
* `type` String (optional)
|
2016-02-04 18:38:47 +00:00
|
|
|
|
|
|
|
Writes the `text` into the clipboard in RTF.
|
|
|
|
|
2015-08-24 21:35:43 +00:00
|
|
|
### `clipboard.clear([type])`
|
2015-03-26 04:53:48 +00:00
|
|
|
|
2015-08-24 21:35:43 +00:00
|
|
|
* `type` String (optional)
|
2014-06-05 06:48:12 +00:00
|
|
|
|
2015-08-24 21:35:43 +00:00
|
|
|
Clears the clipboard content.
|
2013-08-14 22:43:35 +00:00
|
|
|
|
2015-08-24 21:35:43 +00:00
|
|
|
### `clipboard.availableFormats([type])`
|
2013-08-14 22:43:35 +00:00
|
|
|
|
2015-08-24 21:35:43 +00:00
|
|
|
* `type` String (optional)
|
2013-08-14 22:43:35 +00:00
|
|
|
|
2015-08-24 21:35:43 +00:00
|
|
|
Returns an array of supported formats for the clipboard `type`.
|
2013-08-14 22:43:35 +00:00
|
|
|
|
2015-08-24 21:35:43 +00:00
|
|
|
### `clipboard.has(data[, type])` _Experimental_
|
2013-08-14 22:43:35 +00:00
|
|
|
|
2015-05-27 08:05:51 +00:00
|
|
|
* `data` String
|
2015-08-24 21:35:43 +00:00
|
|
|
* `type` String (optional)
|
2013-08-14 22:43:35 +00:00
|
|
|
|
2015-07-23 17:01:00 +00:00
|
|
|
Returns whether the clipboard supports the format of specified `data`.
|
2015-05-27 08:05:51 +00:00
|
|
|
|
|
|
|
```javascript
|
|
|
|
console.log(clipboard.has('<p>selection</p>'));
|
|
|
|
```
|
|
|
|
|
2015-08-24 21:35:43 +00:00
|
|
|
### `clipboard.read(data[, type])` _Experimental_
|
2015-05-27 08:05:51 +00:00
|
|
|
|
|
|
|
* `data` String
|
2015-08-24 21:35:43 +00:00
|
|
|
* `type` String (optional)
|
2015-05-27 08:05:51 +00:00
|
|
|
|
2015-07-23 17:01:00 +00:00
|
|
|
Reads `data` from the clipboard.
|
2013-08-14 22:43:35 +00:00
|
|
|
|
2015-08-24 21:35:43 +00:00
|
|
|
### `clipboard.write(data[, type])`
|
2015-07-07 05:17:33 +00:00
|
|
|
|
|
|
|
* `data` Object
|
|
|
|
* `text` String
|
|
|
|
* `html` String
|
|
|
|
* `image` [NativeImage](native-image.md)
|
2015-08-24 21:35:43 +00:00
|
|
|
* `type` String (optional)
|
2015-07-07 05:17:33 +00:00
|
|
|
|
|
|
|
```javascript
|
|
|
|
clipboard.write({text: 'test', html: "<b>test</b>"});
|
|
|
|
```
|
2015-08-24 21:35:43 +00:00
|
|
|
Writes `data` to the clipboard.
|