Array Property, TList, TStringList, or TCollection, etc (Delphi Win32) - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T14:00:05Zhttp://stackoverflow.com/feeds/question/548567http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/548567/array-property-tlist-tstringlist-or-tcollection-etc-delphi-win323Array Property, TList, TStringList, or TCollection, etc (Delphi Win32)Jamo2009-02-14T05:50:26Z2009-03-21T18:25:51Z
<p>I am developing various components, and regularly run into the need to have a property that has a "one-to-many" relationship, component-to-property-member. The components are often visual components, but not always, and sometimes need to be registered with the IDE (i.e. use the Property Inspector), but not always. I find myself unsure of which route to take when setting up these properties -- using an array property, a TList, a TStringList, a TCollection, or something else altogether (perhaps a new class that inherits from one of those).</p>
<p>What are the "best practices" / guidelines for which to use when / where?</p>
http://stackoverflow.com/questions/548567/array-property-tlist-tstringlist-or-tcollection-etc-delphi-win32/548596#54859610Answer by Nick Hodges for Array Property, TList, TStringList, or TCollection, etc (Delphi Win32)Nick Hodges2009-02-14T06:13:15Z2009-02-14T06:13:15Z<p>If they are properties, you can descend from TCollection, and then the IDE and Object Inspector will automatically provide support for them via the TCollection Property editor.</p>
http://stackoverflow.com/questions/548567/array-property-tlist-tstringlist-or-tcollection-etc-delphi-win32/669721#6697210Answer by mjustin for Array Property, TList, TStringList, or TCollection, etc (Delphi Win32)mjustin2009-03-21T18:25:51Z2009-03-21T18:25:51Z<p>TObjectList and TInterfaceList / IInterfaceList are my favorites. And there is TThreadList for thread-safe lists. All of them are available in Delphi 6 (or even before).</p>