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

GetHtmlHeader() 공개 메소드

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