AODL.ExternalExporter.PDF.PDFExporter.Export C# (CSharp) Method

Export() public method

Exports the specified document.
public Export ( AODL document, string filename ) : void
document AODL The document.
filename string The filename.
return void
		public void Export(AODL.Document.IDocument document, string filename)
		{
			try
			{
				PDFDocument pdfDocument = new PDFDocument();
				pdfDocument.DoExport(document, filename);
				if (this.OnExportFinished != null)
				{
					this.OnExportFinished();
				}
			}
			catch(Exception)
			{
				throw;
			}
		}