The townedcollection tag has no wiki summary.
3
votes
1answer
3k views
Using TOwnedCollection descendant in Delphi
I'm trying to create a custom component with a collection property. However if I try to open the collection editor during design time by clicking "..." button in object inspector, nothing happens. ...
2
votes
2answers
198 views
How to invoke a property editor at design time
I have created a component derived from TCustomPanel. On that panel I have a published property of a class derived from TOwnedCollection. All is working well and clicking the ellipsis in the object ...
1
vote
1answer
231 views
delphi TCollection count not increasing after Add
i have the types
TNotifyReply = class(TCollectionItem)
TNotifyReplylist = class(TOwnedCollection)
NotifyReplylist := TNotifyReplylist.Create(self, TNotifyReply);
After calling this function (Any ...
1
vote
1answer
400 views
TCollection PropertyEditor with editable Columns
for my own TCollection descendant I want to extend the collection property editor. I want to see more columns for other properties of my TCollectionItem. And I am a lucky because it is pretty easy. ...
0
votes
1answer
201 views
Using TCollection with an already-defined class
(Note: This is somewhat related to my last question).
I am new to using TCollection in Delphi, and am still wrapping my head around the various ways to handle one-to-many class/property-item ...