Export() 공개 메소드

Exports the specified document.
public Export ( IDocument document, string dir ) : void
document IDocument The document.
dir string
리턴 void
예제 #1
0
		/// <summary>
		/// save the content of the chart
		/// </summary>
		/// <param name="dir"></param>

		public void SaveTo(string dir)
		{
			AdddDataTableToChart();
			CreateContentBody();
			ChartExporter export = new ChartExporter ();
			export.Export (this.Document,dir);
		}