AODL.Document.Export.Html.OpenDocumentHtmlExporter.OpenDocumentHtmlExporter C# (CSharp) Method

OpenDocumentHtmlExporter() public method

Initializes a new instance of the OpenDocumentHtmlExporter class.
public OpenDocumentHtmlExporter ( ) : System
return System
		public OpenDocumentHtmlExporter()
		{
			this._exporterror				= new ArrayList();

			this._supportedExtensions		= new ArrayList();
			this._supportedExtensions.Add(new DocumentSupportInfo(".html", DocumentTypes.TextDocument));
			this._supportedExtensions.Add(new DocumentSupportInfo(".html", DocumentTypes.SpreadsheetDocument));
			this._supportedExtensions.Add(new DocumentSupportInfo(".htm", DocumentTypes.TextDocument));
			this._supportedExtensions.Add(new DocumentSupportInfo(".htm", DocumentTypes.SpreadsheetDocument));

			this._author						= "Lars Behrmann, [email protected]";
			this._infoUrl						= "http://AODL.OpenDocument4all.com";
			this._description					= "This the standard HTML exporter of the OpenDocument library AODL.";
		}