Drawing Control Interface Description

M

Mr Anderson

I need a complete list of the interface of Drawing Control with a despription
of its methods, properties, events and so on. Does something like this exist
on the internet?
 
C

Chris Roth [ Visio MVP ]

Search for "Visio 2003 SDK" and you'll get a package that installs a help
file, among other things, that contains all of this info.

In addition, once inside the Visio Drawing Control, you can access virtually
all of the properties and methods of the Visio object model, with a few
minor exceptions.

Some other info as well:
http://msdn.microsoft.com/library/d...AboutWorkingWithDrawingControl_HV01046843.asp

--

Hope this helps,

Chris Roth
Visio MVP
 
M

Mr Anderson

Yes, that helps. Thanks.
Still a question left:

- How can I display the templates-area of Visio in my application, so I am
able to drag and drop some shapes out of this templates onto my workspace?
 
C

Chris Roth [ Visio MVP ]

The window has a windows collection. Loop through these and set the one you
want to Visible = True.

A quick snippet to get you going:

For each wn as Visio.Window in ActiveWindow.Windows
debug.WriteLine( wn.Caption & ", " & wn.ID & ", " & wn.Visible)
Next

--

Hope this helps,

Chris Roth
Visio MVP
 

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