Link Search Menu Expand Document

SSpread.ClipboardPaste Method

Explanation Paste the contents of the clipboard into the active cell or cell block.

When exchanging data via the clipboard, use the tab-separated text format. If a cell block is selected, it will be replaced with the contents of the clipboard. Data larger than the cell block will be discarded. If no cell is selected, it will be pasted into the cell block starting with the active cell.

Use the ClipboardOptions property to change the handling of headers in clipboard operations.
Call format ClipboardPaste()
Return value None
Arguments None
Exception EXT-28 An error occurred in the ClipboardCopy method
Example of use
    Function OnRClicked(e) {
        var ret = PopupMenu("Copy", "Cut", "Paste");
         switch (ret) {
        case 1:
            ClipboardCopy();
            break;
        case 2:
            ClipboardCut();
            break;
        case 3:
            ClipboardPaste();
            break;
        }
    }
    
Related item ClipboardOptions property
ClipboardCopy, ClipboardCut methods