protected void ProcessChild(DocxNode node, ref Paragraph paragraph, Dictionary <string, object> properties) { DocxElement element = context.Convert(node); if (element != null) { if (ParagraphCreated != null) { element.ParagraphCreated = ParagraphCreated; } element.Process(node, ref paragraph, properties); } }
protected void ProcessChild(DocxNode node, ref Paragraph paragraph) { DocxElement element = context.Convert(node); if (element != null) { if (ParagraphCreated != null) { element.ParagraphCreated = ParagraphCreated; } element.Process(node, ref paragraph); } }