AODL.ExternalExporter.PDF.PDFExporter.Export C# (CSharp) Метод

Export() публичный Метод

Exports the specified document.
public Export ( AODL document, string filename ) : void
document AODL The document.
filename string The filename.
Результат 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;
			}
		}