Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The Copy method provides you with the ability to programmatically copy a single cell's text to the clipboard. The user, however, always has this ability via the standard CTRL+C shortcut. Use this method when you wish to tie this ability to a menu option.

Example

Code Block
 // Copy the text of cell (1, 1) to the clipboard 
rv = Send_Message(Ctrl, "OLE.Copy", 1:@FM:1)

...