Skip to content

Latest commit

 

History

History
56 lines (35 loc) · 787 Bytes

File metadata and controls

56 lines (35 loc) · 787 Bytes

keywords: Raise event

Raise Event

Raise event operation with wait = Yes migrated to Invoke() method
Raise event operation with wait = No migrated to Raise() method

Migrated Code Examples:

System event

Invoke((Keys.Control|Keys.D1));

Internal event

Raise(Command.GoToNextControl);

Public event

Invoke("MuPublicEvent");

User event

Invoke(MyUserEvent);

User event with wait = No

Raise(MyUserEvent);

With arguments

Invoke(MyUserEvent, vNumber1, 25);

With Destination context name

RaiseOnContext("Main", MyUserEvent, vNumber1, 25);

See Also

Handlers and Commands