Friday
Dec202013
VisioAutomation.VDX 1.1.0 Released
Friday, December 20, 2013 at 10:31AM This release of VisioAutomation.VDX simplifies the process of initially creating the VDX Drawing object and the process of saving it to VDX format.
To create a new Drawing object using the default (built-in) template
using VA = VisioAutomation;
var template = new VA.VDX.Template();
var doc = new VA.VDX.Elements.Drawing(template);
To create a new Drawing object using your own template:
string xml = System.IO.File.ReadAllText( “somefile.vdx” );
var template = new VA.VDX.Template( xml );
var doc = new VA.VDX.Elements.Drawing(template);
To save as a VDX file
doc.Save( “output.vdx” );
saveenr |
3 Comments |
Reader Comments (3)
Hi Saveen:
Your tool for VDX is very help to me. However, I'm stuck at drawing arrows between different rectangles. Could you give me some hint? Since I have tried a lot in your automation.VDX, but every time I fail.
@Qi - Can you share a small code sample that reproduces the problem? I can take a look at it.
Hi I am trying to figure out a way to use your awesome app to export my d3js map to a vdx check out my map at http://www.partialdata.com/public_html/index.php What would be a good way to go about doing this utilizing visioautomation.vdx?
Thank you for your time!