Hello,
I'm building a VCL based on TListBox control. I want to setup a brand new property called CheckBox (Boolean) which will flip from TListBox based inheritance to TCheckListBox based inheritance.
TNewList = class(TListBox);
turns to
TNewList = class(TCheckListBox);
Is it possible to do so?
Thanks
I'm building a VCL based on TListBox control. I want to setup a brand new property called CheckBox (Boolean) which will flip from TListBox based inheritance to TCheckListBox based inheritance.
TNewList = class(TListBox);
turns to
TNewList = class(TCheckListBox);
Is it possible to do so?
Thanks