Reputation: 1
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
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