# PasteRejectionReason

> _Since v3.0.0_

Why a cell's paste was rejected: `'column'` = the column set `onPaste: false`;
`'cell'` = an `onPaste` callback returned `false`.

```ts
type PasteRejectionReason = "column" | "cell"
```
