Hi.
I have a problem about controller's property. "How to transfer the properties of the controller to the other controller?"
For instance.
I create an object that is the subclass of ControlFrame --- named AObject, then I assign many properties to AObject,
for example ,"height = 2cm", "width = 3cm", "enabled? = true","visible? = true" and so on...
later, I create a new object that is also the subclass of ControlFrame ---named BObject ,
now , I want to pass the properties of AObject to the BObject,
finally, BObject have the same properties with AObject's --- "height = 2cm", "width = 3cm", "enabled? = true","visible? = true"
what should I do?
Thank you for your advice.