Versions Compared

Key

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

...

The DoClick method programmatically fires the button's OnClick event. The parameters are passed "as is" through the event, so be sure to adhere to the parameter format and values described in the OnClick event. (See the OnClick event for details).

Example

Code Block
 // Fire the on click event for the left mouse button 
rv = Send_Message(@Window:".OLE_BUTTON", "OLE.DoClick", "0,0", "Left", 0, 0)

...