AODL.Document.Content.Text.ParagraphBuilder.CreateParagraphWithExistingNode C# (CSharp) Method

CreateParagraphWithExistingNode() public static method

Create a paragraph with existing node.
public static CreateParagraphWithExistingNode ( IDocument document, XmlNode paragraphNode ) : Paragraph
document IDocument The document.
paragraphNode System.Xml.XmlNode The paragraph node.
return Paragraph
		public static Paragraph CreateParagraphWithExistingNode(IDocument document, XmlNode paragraphNode)
		{
			return new Paragraph(paragraphNode, document);
		}