Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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