# ClipboardConfig

> _Since v0.1.1_

Configuration options for the clipboard plugin *

## Properties

| Property | Type | Description |
| -------- | ---- | ----------- |
| `includeHeaders?` | <code>boolean</code> | Include column headers in copied text (default: false) |
| `delimiter?` | <code>string</code> | Column delimiter character (default: '\\t' for tab) |
| `newline?` | <code>string</code> | Row delimiter/newline character (default: '\\n') |
| `quoteStrings?` | <code>boolean</code> | Wrap string values with quotes (default: false) |
| `processCell?` | <code>(value: unknown, field: string, row: unknown) =&gt; string</code> | Custom cell value processor for copy operations |
| `pasteHandler?` | <code><a href="/grid/plugins/clipboard/types/pastehandler/">PasteHandler</a> &#124; unknown</code> | Custom paste handler. By default, the plugin applies pasted data to `grid.rows` starting at the target cell. |

### Property Details

#### pasteHandler

Custom paste handler. By default, the plugin applies pasted data to `grid.rows`
starting at the target cell.

- Set to a custom function to handle paste yourself
- Set to `null` to disable auto-paste (event still fires)
- Return `false` from handler to prevent default behavior

**Default:** `defaultPasteHandler (auto-applies paste data)`

---
