SeDi
SeDi

Reputation: 1

Reading .vsdx(visio 2013) file using visual studio

How can I read a sequence diagram using c# language in visual studio? I want to know the node information i.e how many messages are sending or receiving etc.

Upvotes: 0

Views: 984

Answers (1)

Nikolay
Nikolay

Reputation: 12255

There is a good KB article about that which explains in details how to manipulate .vsdx a Visio file using System.IO.Packaging and XML. Check it out:

How to: Manipulate the Visio 2013 file format programmatically

Also, check out this blog article on MSDN:

10 tips for developers working with the Visio VSDX file format

Upvotes: 1

Related Questions