Versions Compared

Key

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

...

The purpose of the property is to control when Escape keys are passed back to OpenInsight so that Cancel buttons can execute their bahaviorbehavior.

Example

 

Code Block
// Make the user press escape twice to run the CANCEL button 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.SingleEscape", 0) 

// Now, allow the user to run the CANCEL button by pressing escape only once 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.SingleEscape", 1)

...