AODL.Document.Content.Text.Paragraph.InitStandards C# (CSharp) Метод

InitStandards() приватный Метод

Inits the standards.
private InitStandards ( ) : void
Результат void
		private void InitStandards()
		{
			this.TextContent			= new ITextCollection();
			this.Content				= new ContentCollection();
			this._mixedContent			= new ArrayList();

			if (this.Document is AODL.Document.TextDocuments.TextDocument)
				this.Document.DocumentMetadata.ParagraphCount	+= 1;

			this.TextContent.Inserted	+= TextContent_Inserted;
			this.Content.Inserted		+= Content_Inserted;
			this.TextContent.Removed	+= TextContent_Removed;
			this.Content.Removed		+= Content_Removed;			
		}