AODL.Document.Content.Text.Paragraph.GetTextHtmlContent C# (CSharp) 메소드

GetTextHtmlContent() 개인적인 메소드

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

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

			return html;
		}