Posted 2 February 2023, 6:57 am EST
I’m trigger ClipboardPaste by event like that to copy data from one workbook to another
$("#button2").click(function ()
{
spread.commandManager().execute({cmd: "clipboardPaste",
sheetName: "Sheet1", fromSheet: sheet, fromRanges: fromRange,
pastedRanges: toRanges, isCutting: false, clipboardText: "",
pasteOption: GC.Spread.Sheets.ClipboardPasteOptions.all});
});It like not working when pasting area is containing value.
Is there any way to use clipboard paste override current content?
