Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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. }