View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
J J is offline
external usenet poster
 
Posts: 1
Default 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