Table of Contents

TIDEEngineNotifier Class

Base class for objects that receive event notifications about changes in the IDE.

Remarks

TIDEEngineNotifier is the ancestor class for all objects that receive notifications about changes in the IDE. If you want to get notified about changes in the IDE (an object has been selected, a property was changed, etc.), you need to inherit from TIDEEngineNotifier and override method Notification to perform the desired operations. You register a notifier using TIDEEngine.AddNotifier method.

Syntax

Unit: IDEMain

TIDEEngineNotifier = class(TObject);

Methods

Name Description
Notification Notification method is called when an event in the scripter IDE has been performed. The type of event/notification is passed in parameter AOperation.