# clipboard
`clipboard` 模块提供方法来供复制和粘贴操作 .
下面例子展示了如何将一个字符串写道 clipboard 上:
```javascript
const clipboard = require('electron').clipboard;
clipboard.writeText('Example String');
```
在 X Window 系统上, 有一个可选的 clipboard. 你可以为每个方法使用 `selection` 来控制它:
```javascript
clipboard.writeText('Example String', 'selection');
console.log(clipboard.readText('selection'));
```
## 方法
`clipboard` 模块有以下方法:
**注意:** 测试 APIs 已经标明,并且在将来会被删除 .
### `clipboard.readText([type])`
* `type` String (可选)
以纯文本形式从 clipboard 返回内容 .
### `clipboard.writeText(text[, type])`
* `text` String
* `type` String (可选)
以纯文本形式向 clipboard 添加内容 .
### `clipboard.readHtml([type])`
* `type` String (可选)
返回 clipboard 中的标记内容.
### `clipboard.writeHtml(markup[, type])`
* `markup` String
* `type` String (可选)
向 clipboard 添加 `markup` 内容 .
### `clipboard.readImage([type])`
* `type` String (可选)
从 clipboard 中返回 [NativeImage](native-image.md) 内容.
### `clipboard.writeImage(image[, type])`
* `image` [NativeImage](native-image.md)
* `type` String (可选)
向 clipboard 中写入 `image` .
### `clipboard.readRtf([type])`
* `type` String (可选)
从 clipboard 中返回 RTF 内容.
### `clipboard.writeRtf(text[, type])`
* `text` String
* `type` String (可选)
向 clipboard 中写入 RTF 格式的 `text` .
### `clipboard.clear([type])`
* `type` String (可选)
清空 clipboard 内容.
### `clipboard.availableFormats([type])`
* `type` String (可选)
返回 clipboard 支持的格式数组 .
### `clipboard.has(data[, type])` _Experimental_
* `data` String
* `type` String (可选)
返回 clipboard 是否支持指定 `data` 的格式.
```javascript
console.log(clipboard.has('<p>selection</p>'));
```
### `clipboard.read(data[, type])` _Experimental_
* `data` String
* `type` String (可选)
读取 clipboard 的 `data`.
### `clipboard.write(data[, type])`
* `data` Object
* `text` String
* `html` String
* `image` [NativeImage](native-image.md)
* `type` String (可选)
```javascript
clipboard.write({text: 'test', html: "<b>test</b>"});
```
向 clipboard 写入 `data` .
- 介绍
- 常见问题
- Electron 常见问题
- 向导
- 支持平台
- 分发应用
- 提交应用到 Mac App Store
- 打包应用
- 使用 Node 原生模块
- 主进程调试
- 使用 Selenium 和 WebDriver
- 使用开发人员工具扩展
- 使用 Pepper Flash 插件
- 使用 Widevine CDM 插件
- 教程
- 快速入门
- 桌面环境集成
- 在线/离线事件探测
- API文档
- 简介
- 进程对象
- 支持的 Chrome 命令行开关
- 环境变量
- 自定义的 DOM 元素
- File 对象
- &lt;webview&gt; 标签
- window.open 函数
- 在主进程内可用的模块
- app
- autoUpdater
- BrowserWindow
- contentTracing
- dialog
- globalShortcut
- ipcMain
- Menu
- MenuItem
- powerMonitor
- powerSaveBlocker
- protocol
- session
- webContents
- Tray
- 在渲染进程(网页)内可用的模块
- desktopCapturer
- ipcRenderer
- remote
- webFrame
- 在两种进程中都可用的模块
- clipboard
- crashReporter
- nativeImage
- screen
- shell
- 开发
- 代码规范
- 源码目录结构
- 与 NW.js(原 node-webkit)在技术上的差异
- 构建系统概览
- 构建步骤(OS X)
- 构建步骤(Windows)
- 构建步骤(Linux)
- 在调试中使用 Symbol Server