AODL.Document.TextDocuments.DocumentStyles.GetHtmlFooter C# (CSharp) Method

GetHtmlFooter() public method

Gets the HTML footer.
public GetHtmlFooter ( TextDocument document ) : string
document TextDocument The document.
return string
		public string GetHtmlFooter(TextDocument document)
		{
			string html				= "";
			XmlNode node		= this.Styles.SelectSingleNode(
				"//office:master-styles/style:master-page/style:footer",
				document.NamespaceManager);
			
			if (node != null)
			{
			}
			return html;
		}