AODL.Document.TextDocuments.DocumentMetadata.Init C# (CSharp) Method

Init() private method

Inits this instance.
private Init ( ) : void
return void
		private void Init()
		{
			this.Generator			= "AODL - An OpenDocument Library";
			this.PageCount			= 0;
			this.ParagraphCount		= 0;
			this.ObjectCount		= 0;
			this.TableCount			= 0;
			this.ImageCount			= 0;
			this.WordCount			= 0;
			this.CharacterCount		= 0;
			this.CreationDate		= DateTime.Now.ToString("s");
			this.LastModified		= DateTime.Now.ToString("s");
			this.Language			= "en-US";
			this.Title				= "Untitled";
			this.Subject			= "No Subject";
			this.Keywords			= "";
		}