How to get to ShapeSheet for Document

S

Steve Appling

How can I get to the ShapeSheet for the Document from VBA? I know how
to get Cells from a Shape object, but can't figure out how to get to the
one for the whole Document.
 
S

Steve Appling

JuneTheSecond said:
Do you mean to display shape sheet?
Or what?
No, I just want to get the value of a custom property that is set in the
shape sheet for the whole document. I can set the value by using the
drawing explorer window to access the shape sheet for the document, but
I can't figure out how to access the value from VBA.
 
S

Steve Appling

Al said:
try something like this

objDocSheet = objDoc.DocumentSheet

al
That did it. In retrospect, that should have been obvious. Thanks for
the help.
 
Top