Fires the OnClick event.
rv = Send_Message(Ctrl, "OLE.DoClick", Point, Button, Shift, Ctrl) |
Parameter | Description |
---|---|
Point | The event's Point value |
Button | The event's Button value |
Shift | The event's Shift value |
Ctrl | The event's Ctrl value |
The DoClick method fires the OnClick event programmatically. The parameters you supply will be passed as is to the event handler.
// Fire the OnClick event Send_Message(@Window:".OLE_PICTURE", "OLE.DoClick", "0,0", "Left", 0, 0) |