Table of Contents

TEventSetMode Enumeration

Controls how a script event handler is added relative to an existing event handler on a Delphi object.

Remarks

esReplaceEvent: replaces the existing handler; the previous handler is not called. esAddEventOnTop: executes the new handler first, then calls the previous handler. esAddEventOnBottom: calls the previous handler first, then executes the new handler.

Syntax

Unit: atScript

Members

Name Value Description
esReplaceEvent 0
esAddEventOnTop 1
esAddEventOnBottom 2