Link Search Menu Expand Document

SSpread.ClipboardCopy Method

Explanation Copies the selected cell block to the clipboard.

When exchanging data via the clipboard, use the tab-separated text format. If no cell is selected, the active cell is copied.
Use the ClipboardOptions property to change the handling of headers in clipboard operations.
Call format ClipboardCopy()
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
ClipboardCut, ClipboardPaste methods