[Wish] Define properties in a class

HotShoe

Well-Known Member
Licensed User
Longtime User
I'd like to be able to define properties in a class, or to expose the inherited properties of a base panel. I'd also like to see change events for those inherited properties so that I can take action if the size (width or height) of the base panel is changed and take action to adjust the layout as needed.

Maybe something like:

Property Height Inherited From Panel
Property Left Inherited From Panel
etc.

Sub Height_Changed(NewHeight As Int)

End Sub

--- Jem
 
Top