TatEventPlacement Enumeration
Specifies how a script event handler replaces a previously set event handler on a Delphi object event.
Remarks
epReplaceCall: replaces the existing handler; the previous handler is not called.
epTopCall: executes the new handler first, then calls the previous handler.
epBottomCall: calls the previous handler first, then executes the new handler.
Syntax
Unit: atScript
Members
| Name | Value | Description |
|---|---|---|
| epReplaceCall | 0 | |
| epTopCall | 1 | |
| epBottomCall | 2 |