Chili.Opf3 Send comments on this topic.
ListChanged Event
See Also 
Chili.Opf3 Namespace > Generic ObjectSet Class : ListChanged Event




Occurs when the ObjectSet changes.

Syntax

Visual Basic (Declaration) 
Public Event ListChanged() As ListChangedEventHandler
Visual Basic (Usage)Copy Code
Dim instance As ObjectSet(Of T)
Dim handler As ListChangedEventHandler
 
AddHandler instance.ListChanged, handler
C# 
public event ListChangedEventHandler ListChanged()
Managed Extensions for C++ 
public: __event ListChangedEventHandler ListChanged();
C++/CLI 
public:
event ListChangedEventHandler ListChanged();

Remarks

This event is fired each time the ObjectSet changes to notify that the object has been changed. It allows to act after the object has been changed.

This event is also used by the ObjectView to get informed, when the ObjectSet changes.

Requirements

Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family

See Also