@quantlab/handsontable
Version:
Spreadsheet-like data grid editor that provides copy/paste functionality compatible with Excel/Google Docs
23 lines (16 loc) • 605 B
text/typescript
import Handsontable from '../../../../handsontable';
const copyPaste = Handsontable.plugins.CopyPaste;
copyPaste.columnsLimit = 10;
copyPaste.rowsLimit = 10;
copyPaste.pasteMode = 'overwrite';
copyPaste.pasteMode = 'shift_down';
copyPaste.pasteMode = 'shift_right';
copyPaste.copy();
copyPaste.copy(true);
copyPaste.cut();
copyPaste.cut(true);
copyPaste.paste();
copyPaste.paste(true);
copyPaste.getRangedData([{startRow: 1, startCol: 1, endRow: 2, endCol: 2}]);
copyPaste.getRangedCopyableData([{startRow: 1, startCol: 1, endRow: 2, endCol: 2}]);
copyPaste.setCopyableText();