How to check if an object has a certain property?
If I have a procedure that takes as input an object, how do I
programmatically check to see if that object has a height property?
Function CheckForHeightProperty(InputObject as Object)
?? How do I check to see what properties this object has? Is there any way
to enmurate them programmatically??
End Function
|