Skip to content

IOTANotifier

Chua Chee Wee edited this page Oct 24, 2020 · 7 revisions

IOTANotifier is the base interface for all notifiers and wizards. All wizards and notifiers have IOTANotifier as a base interface, so you must implement all the methods of IOTANotifier. Most of the time, these methods are never called, so your implementation can often be an empty method. You can choose to inherit your class from TNotifierObject and add IOTANotifier to your class inheritance.

IOTANotifier methods and properties.


Up to Parent: IUnknown

Method Description
AfterSave This procedure is called immediately after the item is successfully saved. This is not called for IOTAWizard.
BeforeSave This function is called immediately before the item is saved. This is not called for IOTAWizard.
Destroyed The associated item is being destroyed so all references should be dropped. Exceptions are ignored.
Modified This associated item was modified in some way. This is not called for IOTAWizard.

There are no properties.

Clone this wiki locally