[]
Copies the contents of the selected cells to the Clipboard.
[JavaScript]
FpSpread1.Copy();
None
None
This method is similar to pressing the Copy button on the command bar. This method does not cause a postback to occur.
This is a sample that contains the method. On the client side, the script that contains the method would look like this:
<script type="text/javascript">
function moveSelection() {
FpSpread1.Copy(); // copies the selection to Clipboard
FpSpread1.SetActiveCell(0,0); // goes to top of displayed sheet
FpSpread1.Paste(); // pastes selection
}
</script>