Versions Compared

Key

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

...

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

Example

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

...