Versions Compared

Key

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

...

The PassEnterKey property is a flag which determines the behavior of the Enter key. When set to zero (which is the default), the Enter key is consumed by the Edit Table and OpenInsight never knows it was pressed. This prevents Default buttons from responding. However, if the PassEnterKey property is set to 1, then all Enter keys are passed to OpenInsight, which allows OpenInsight default buttons to fire.

Example

Code Block
 // Pass ENTER keys to OpenInsight 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.PassEnterKey", 0)

...