Versions Compared

Key

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

...

The EditContextMenu property can be used to modify the behavior of the right click action for cell's in edit mode. By default, right clicking in a cell in edit mode will show the standard edit line context menu (Cut, Copy, Paste, etc.). By setting this property to FALSE, right clicking will fire the OnClick event for the edit table rather than showing the context menu.

Example

Code Block
 // Show the context menu 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.EditContextMenu", 1) 

 // Fire the OnClick event instead 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.EditContextMenu", 0)

...