public Exporter(ExporterSettings settings) { if (settings == null) { throw new System.ArgumentNullException(); } if (settings.InputDocument == null) { throw new System.ArgumentNullException(); } if (settings.DestinationPath == null) { throw new System.ArgumentNullException(); } if (!System.IO.Directory.Exists(this.Settings.DestinationPath)) { throw new System.ArgumentException(string.Format("destination path does not exist: \"{0}\"", this.Settings.DestinationPath)); } string input_filname = settings.InputDocument.Name; this.Settings = settings; this.Settings.BaseName = this.Settings.BaseName ?? System.IO.Path.GetFileNameWithoutExtension(input_filname); this.Settings.InputExtension = System.IO.Path.GetExtension(input_filname); }
public Exporter(ExporterSettings settings) { Log = new List <LogRecord>(); if (settings == null) { throw new System.ArgumentNullException(); } if (settings.InputDocument == null) { throw new System.ArgumentNullException(); } if (settings.DestinationPath == null) { throw new System.ArgumentNullException(); } this.Settings = settings; if (!System.IO.Directory.Exists(this.Settings.DestinationPath)) { throw new System.ArgumentException(string.Format("destination path does not exist: \"{0}\"", this.Settings.DestinationPath)); } string input_filname = settings.InputDocument.Name; this.Settings.BaseName = this.Settings.BaseName ?? System.IO.Path.GetFileNameWithoutExtension(input_filname); this.Settings.InputExtension = System.IO.Path.GetExtension(input_filname); }
private static void Main(string[] args) { if (args.Length < 1) { System.Console.WriteLine("Syntax is: VisioExportPagesToDocs <filename.vsd> [<outptufolder>]"); System.Environment.Exit(0); } string input_filename = args[0]; input_filename = System.IO.Path.GetFullPath(input_filename); var visioapp = new Microsoft.Office.Interop.Visio.Application(); var docs = visioapp.Documents; Microsoft.Office.Interop.Visio.Document doc = null; try { doc = docs.Open(input_filename); var settings = new ExporterSettings(); settings.InputDocument = doc; if (args.Length >= 2) { settings.DestinationPath = args[1]; } else { settings.DestinationPath = System.IO.Path.GetDirectoryName(input_filename); } var exporter = new Exporter(settings); foreach (var rec in exporter.Run()) { Console.WriteLine(); Console.WriteLine("Page Index: {0}", rec.PageIndex); Console.WriteLine("Page Name: {0}", rec.PageName); Console.WriteLine("Output document: {0}", rec.OutputFilename); Console.WriteLine("Output document already exists: {0}", rec.OutputFileAlreadyExists); Console.WriteLine("Wrote output document: {0}", rec.OutputFileWritten); } } catch (System.Runtime.InteropServices.COMException comexc) { throw new System.ArgumentException(string.Format("Failed to open file: {0}", comexc.Message)); } }
private static void Main(string[] args) { if (args.Length < 1) { System.Console.WriteLine("Syntax is: VisioExportPagesToDocs <filename.vsd> [<outptufolder>]"); System.Environment.Exit(0); } string input_filename = args[0]; input_filename = System.IO.Path.GetFullPath(input_filename); var visioapp = new Microsoft.Office.Interop.Visio.Application(); var docs = visioapp.Documents; Microsoft.Office.Interop.Visio.Document doc = null; try { doc = docs.Open(input_filename); var settings = new ExporterSettings(); settings.InputDocument = doc; if (args.Length >= 2) { settings.DestinationPath = args[1]; } else { settings.DestinationPath = System.IO.Path.GetDirectoryName(input_filename); } var exporter = new Exporter(settings); foreach (var rec in exporter.Run()) { Console.WriteLine(); Console.WriteLine("Page Index : {0}", rec.PageIndex); Console.WriteLine("Page Name : {0}", rec.PageName); Console.WriteLine("Output Document : {0}", rec.OutputFilename); Console.WriteLine("Output Document already existed : {0}", rec.OutputFileAlreadyExisted); Console.WriteLine("Wrote output file: {0}", rec.OutputFileWritten); } } catch (System.Runtime.InteropServices.COMException comexc) { throw new System.ArgumentException(string.Format("Failed to open file: {0}", comexc.Message)); } }