Shape attributes in VBA

B

BBD

Hi all,

I am writting VBA code to export Visio document content to some special
format (lets say to PDF). I know how I can get geometry of the shapes in the
document:

Dim XYPoints() As Double
ThisDocument.Pages(1).Shapes(1).Paths(1).Points 0.1, XYPoints

How can I get another attributes of the shape, like line color, line
pattern, fill transparency, etc? Where can I look for detailed
documentation?

Thanks,
BBD
 
P

Paul Herber

Hi all,

I am writting VBA code to export Visio document content to some special
format (lets say to PDF). I know how I can get geometry of the shapes in the
document:

Dim XYPoints() As Double
ThisDocument.Pages(1).Shapes(1).Paths(1).Points 0.1, XYPoints

How can I get another attributes of the shape, like line color, line
pattern, fill transparency, etc? Where can I look for detailed
documentation?

Try the Visio SDK. Google finds it 1st hit.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top