Paste
Pastes the contents of the clipboard to the current sheet.
Syntax
expression.Paste(destination);
expression - A variable that represents a ApiWorksheet class.
Parameters
| Name | Required/Optional | Data type | Default | Description |
|---|---|---|---|---|
| destination | Optional | ApiRange | The cell range where the clipboard contents should be pasted. If this argument is omitted, the current selection is used. |
Returns
This method doesn't return any data.
Example
Paste date from clipboard in a spreadsheet.
// How to paste a copied or cut data from the clipboard in a spreadsheet.
// Paste to the worksheet using the worksheet API in a spreadsheet.
let worksheet = Api.GetActiveSheet();
worksheet.Paste();