AODL.Document.TextDocuments.DocumentStyles.GetHtmlFooter C# (CSharp) 메소드

GetHtmlFooter() 공개 메소드

Gets the HTML footer.
public GetHtmlFooter ( TextDocument document ) : string
document TextDocument The document.
리턴 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;
		}