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

GetTextHtmlContent() private method

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

			foreach(IText itext in this.TextContent)
			{
				if (itext is IHtml)
					html	+= ((IHtml)itext).GetHtml()+"\n";
			}

			return html;
		}