AODL.Document.Import.OpenDocument.NodeProcessors.TextContentProcessor.CreateFootnote C# (CSharp) Метод

CreateFootnote() публичный Метод

Creates the footnote.
public CreateFootnote ( IDocument document, XmlNode node ) : Footnote
document IDocument The document.
node System.Xml.XmlNode The node.
Результат AODL.Document.Content.Text.Footnote
		public Footnote CreateFootnote(IDocument document,XmlNode node)
		{
			try
			{
				Footnote fnote			= new Footnote(document);
				fnote.Node				= node.CloneNode(true);

				return fnote;
			}
			catch(Exception ex)
			{
				throw new AODLException("Exception while trying to create a Footnote.", ex);
			}
		}