public void Process(OpenXmlCompositeElement parent, Model context)
        {
            var tables = parent
                         .Childs <Table>();

            foreach (var table in tables)
            {
                this.Process(table, context);
            }
        }
Beispiel #2
0
 public static IEnumerable <Paragraph> Paragraphs(this OpenXmlCompositeElement parent) => parent
 .Childs <Paragraph>();