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.

12345678910111213141516171819202122232425262728293031323334
  1. /*************************************************************************************
  2. DocX – DocX is the community edition of Xceed Words for .NET
  3. Copyright (C) 2009-2016 Xceed Software Inc.
  4. This program is provided to you under the terms of the Microsoft Public
  5. License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
  6. For more features and fast professional support,
  7. pick up Xceed Words for .NET at https://xceed.com/xceed-words-for-net/
  8. ***********************************************************************************/
  9. using System.Collections.Generic;
  10. using System.Xml.Linq;
  11. namespace Xceed.Words.NET
  12. {
  13. public class Section : Container
  14. {
  15. public SectionBreakType SectionBreakType;
  16. internal Section( DocX document, XElement xml ) : base( document, xml )
  17. {
  18. }
  19. public List<Paragraph> SectionParagraphs
  20. {
  21. get; set;
  22. }
  23. }
  24. }