We have a requirement where we want to modify a visio file and then save it back in the same format. Eg. .vss to .vss
I tried doing this using aspose diagram .Save method, but it does not allow to save the file in all the formats so we are forced to save the file in .vdx/.vsx or.vtx formats.
Am I missing something?
Mentioned below is the code I am using
Diagram vssDiagram = new Diagram(“c:\VisioTest.vss”, LoadFileFormat.VSS);
.
.
vssDiagram.Save(“c:\MyOutput1.vdx”, SaveFileFormat.VSX);
Kindly guide me as how can I achieve this.