You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Section.cs 345B

123456789101112131415161718
  1. using System.Collections.Generic;
  2. using System.IO.Packaging;
  3. using System.Xml.Linq;
  4. namespace Novacode
  5. {
  6. public class Section : Container
  7. {
  8. public SectionBreakType SectionBreakType;
  9. internal Section(DocX document, XElement xml) : base(document, xml)
  10. {
  11. }
  12. public List<Paragraph> SectionParagraphs { get; set; }
  13. }
  14. }