AODL.Document.Content.Text.Paragraph.GetContentHtmlContent C# (CSharp) Method

GetContentHtmlContent() private method

Gets the content of the text HTML.
private GetContentHtmlContent ( ) : string
return string
		private string GetContentHtmlContent()
		{
			string html		= "";

			foreach(IContent icontent in this.Content)
			{
				if (icontent is IHtml)
					html	+= ((IHtml)icontent).GetHtml();
			}

			return html;
		}