# GridClipboardDirective

Owns the binding(s) `[clipboard], [copy], [paste]` on `<tbw-grid>` for the matching feature plugin. See `GridFilteringDirective` for the full rationale.

## Properties

| Property | Type | Description |
| -------- | ---- | ----------- |
| `clipboard` | <code>InputSignal&lt;boolean &#124; <a href="/grid/plugins/clipboard/interfaces/clipboardconfig/">ClipboardConfig</a> &#124; undefined&gt;</code> |  |
| `copy` | <code>OutputEmitterRef&lt;<a href="/grid/plugins/clipboard/interfaces/copydetail/">CopyDetail</a>&gt;</code> |  |
| `paste` | <code>OutputEmitterRef&lt;<a href="/grid/plugins/clipboard/interfaces/pastedetail/">PasteDetail</a>&gt;</code> |  |

## Methods

### ngOnInit()

A callback method that is invoked immediately after the
default change detector has checked the directive's
data-bound properties for the first time,
and before any of the view or content children have been checked.
It is invoked only once when the directive is instantiated.

```ts
ngOnInit(): void
```

***

### ngOnDestroy()

A callback method that performs custom clean-up, invoked immediately
before a directive, pipe, or service instance is destroyed.

```ts
ngOnDestroy(): void
```

***
