@capacitor/clipboard
Version:
The Clipboard API enables copy and pasting to/from the system clipboard.
100 lines (62 loc) • 2.8 kB
Markdown
The Clipboard API enables copy and pasting to/from the system clipboard.
```bash
npm install @capacitor/clipboard
npx cap sync
```
```typescript
import { Clipboard } from '@capacitor/clipboard';
const writeToClipboard = async () => {
await Clipboard.write({
string: "Hello World!"
});
};
const checkClipboard = async () => {
const { type, value } = await Clipboard.read();
console.log(`Got ${type} from clipboard: ${value}`);
};
```
<docgen-index>
* [`write(...)`](
* [`read()`](
* [Interfaces](
</docgen-index>
<docgen-api>
<!--Update the source file JSDoc comments and rerun docgen to update the docs below-->
```typescript
write(options: WriteOptions) => Promise<void>
```
Write a value to the clipboard (the "copy" action)
| Param | Type |
| ------------- | ----------------------------------------------------- |
| **`options`** | <code><a href="#writeoptions">WriteOptions</a></code> |
**Since:** 1.0.0
--------------------
```typescript
read() => Promise<ReadResult>
```
Read a value from the clipboard (the "paste" action)
**Returns:** <code>Promise<<a href="#readresult">ReadResult</a>></code>
**Since:** 1.0.0
--------------------
Represents the data to be written to the clipboard.
| Prop | Type | Description | Since |
| ------------ | ------------------- | --------------------------------------------------------------------------------------------------------------- | ----- |
| **`string`** | <code>string</code> | Text value to copy. | 1.0.0 |
| **`image`** | <code>string</code> | Image in [Data URL](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs) format to copy. | 1.0.0 |
| **`url`** | <code>string</code> | URL string to copy. | 1.0.0 |
| **`label`** | <code>string</code> | User visible label to accompany the copied data (Android Only). | 1.0.0 |
#### ReadResult
Represents the data read from the clipboard.
| Prop | Type | Description | Since |
| ----------- | ------------------- | ------------------------------ | ----- |
| **`value`** | <code>string</code> | Data read from the clipboard. | 1.0.0 |
| **`type`** | <code>string</code> | Type of data in the clipboard. | 1.0.0 |
</docgen-api>