AODL.Document.Content.Text.FormatedText.GetTextWithHtmlControl C# (CSharp) Method

GetTextWithHtmlControl() private method

Gets the text with HTML controls as Tab as   and line-break as br tag
private GetTextWithHtmlControl ( ) : string
return string
		private string GetTextWithHtmlControl()
		{
			string text		= "";

			foreach(XmlNode node in this.Node)
			{
				if (node.LocalName == "tab")
					text	+= "   ";
				else if (node.LocalName == "line-break")
					text	+= "<br>";
//				else if (node.LocalName == "s")
//					text	+= WhiteSpace.GetWhiteSpaceHtml(node.OuterXml);
				else if (node.InnerText.Length > 0)
					text	+= node.InnerText;
			}

			return text;
		}