Skip to main content Skip to footer

How to paste only the values of a cell in JavaScript

Background:

Users can specify for the clipboard to only paste values by setting the clipBoardOptions to set the ClipboardPasteOptions to Values.

Steps to Complete:

1. Set the ClipboardPasteOptions enumeration to values

Getting Started:

Set the ClipboardPasteOptions enumeration to values to specify that the clipboard is to paste only the value, not the formatting of a cell:

 GC.Spread.Sheets.ClipboardPasteOptions.values;

Mackenzie Albitz