Ejemplo n.º 1
0
        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);
            }
        }
Ejemplo n.º 2
0
        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);
            }
        }