AODL.Document.Content.Text.Header.GetAnchor C# (CSharp) Method

GetAnchor() private method

Gets the html anchor, if the document use a table of contents
private GetAnchor ( ) : string
return string
		private string GetAnchor()
		{
			string anchor		= "";

//			try
//			{
//				if (this.Document.TableofContentsCount > 0)
//				{
//					anchor		+= "<a name=\"";
//					anchor		+= this.Node.InnerText;
//					anchor		+= "\"> </a>\n";
//				}
//			}
//			catch(Exception ex)
//			{
//			}

			return anchor;
		}