RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
INotifyList Interface

INotifyList is the interface that allows objects to register and unregister an interest in changes to a component.

Pascal
INotifyList = interface;
C++
__interface INotifyList;

WebSnap components that let other objects register interest in their changes implement INotifyList. When another object wants to be informed of changes, it calls the AddNotify method. Then, when the component that implements INotifyList changes, it informs all of the objects that have called AddNotify of the change. When an object wants to unregister its interest, it calls the RemoveNotify method. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!