vote up 3 vote down star

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).

What are the "best practices" / guidelines for which to use when / where?

flag

41% accept rate

2 Answers

vote up 10 vote down check

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.

link|flag
Nick, for OI support, isnt TOwnedCollection? – Cesar Romero Feb 14 at 13:16
No, TCollection is just fine -- – Nick Hodges Feb 14 at 17:39
vote up 0 vote down

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).

link|flag
Interesting -- thanks! – Jamo Mar 28 at 1:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.