RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
Classes.TListNotification Enumeration

TListNotification defines list processing action types.

Pascal
TListNotification = (
  lnAdded,
  lnExtracted,
  lnDeleted
);
C++
enum TListNotification {
  lnAdded,
  lnExtracted,
  lnDeleted
};

The TListNotification type enumerates the different event types for a list object. 

lnAdded means an entry was added to the list. 

lnExtracted means an entry was deleted from the list. The entry was specified by reference. 

lnDeleted means an entry was deleted from the list. The entry was specified by list position. 

TListNotification is principally used internally by TList

 

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