
An event defines the function signature of an event, which can be received by an event receiver (TCE objects or TCE object pointers).

Parts of the event definition
|
Part |
Description |
|
Permission |
Public or omitted: Call from all objects possible. Friend: Call only from objects of your own knowledge base. Private: Call only from objects of your own class or classes derived from. |
|
Keyword |
Always Event. |
|
Name |
Name of the event. The name must be unique in the class. |
|
Parameters of the event definition |
All types. ByVal / ByRef Optional |
|
Return |
Always Void. |