Interface CopyableItemSource

Sheets may contain complex objects such as tables, drawings, images, listeners or other items. These can be copied from one sheet to another via a callback.

interface CopyableItemSource {
    onCopyToSheet(sheet, coords, options?): void;
    range?(): CellRangeCoords;
}

Methods