I have been trying to find out how exactly you can embed classes/methods to get the following line to be processed:
Pages(1).Buttons(1).Add
How would a basic class look for this? Or would you have to create a Namespace?
I was trying to do something like:
But I don't see a way or can't pass an index to a Class, can I? Basically, I want properties within properties or methods within methods..
Thanks in advance,
liquid8
Pages(1).Buttons(1).Add
How would a basic class look for this? Or would you have to create a Namespace?
I was trying to do something like:
Visual Basic:
Class Pages
Class Buttons
Property Add()
End Property
End Buttons
End Class
But I don't see a way or can't pass an index to a Class, can I? Basically, I want properties within properties or methods within methods..
Thanks in advance,
liquid8