AODL.Document.Import.OpenDocument.OpenDocumentImporter.OpenDocumentImporter C# (CSharp) Method

OpenDocumentImporter() public method

Initializes a new instance of the OpenDocumentImporter class.
public OpenDocumentImporter ( ) : System
return System
		public OpenDocumentImporter()
		{
			string dir = Path.Combine(Environment.CurrentDirectory, folderGuid.ToString());
			m_dirInfo = new DirInfo(dir, Path.Combine(dir, "PicturesRead"));
			
			this._importError					= new ArrayList();
			
			this._supportedExtensions			= new ArrayList();
			this._supportedExtensions.Add(new DocumentSupportInfo(".odt", DocumentTypes.TextDocument));
			this._supportedExtensions.Add(new DocumentSupportInfo(".ods", DocumentTypes.SpreadsheetDocument));

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