Navigation: Code Documentation > RSCommon > Structures > Interfaces
IStringsOwner Interface
Defines the interface for an object which may "own" a TSFCList, TSFCFreeList, or TGStringList object. An owner is notified automatically when the string lists are changed (items are added or deleted).
Namespace: Structures
IInterface Structures.IStringsOwner
Delphi
type IStringsOwner = interface end;
Name
Description
ClearStrings(TObject)
This method is called when the string list is cleared.
DeleteObject(TObject,Integer)
The DeleteObject method is called by the string list every time an object is about to be deleted from the list.
Put(TObject,Integer,String)
The Put method is called when the string list is added or replacing an item in the string list.
PutObject(TObject,Integer,TObject)
The PutObject method is called when the string list is adding or replacing an Object in the string list.
StringsChanged(TObject)
The StringsChanged method is called whenever the string list changes.
StringsChanging(TObject)
The StringsChanging method is called whenever the string list is about to be changed.
Top
•Structures.TSFCList
•Structures.TSFCFreeList
•Structures.TGStringList
•Structures