Example #1
0
        public void AddSectionProperties(SectionProperties properties)
        {
            //	The section properties element for any section except the last
            //	one in the document must be a child of the last paragraph in
            //	that section. We add an empty paragraph for this.
            SectionBreakParagraph brk = new SectionBreakParagraph(properties);

            _content.Add(brk);
        }
Example #2
0
 public void AddLastSectionProperties(SectionProperties properties)
 {
     //	The section properties element for the last section in the document
     //	must be a child of the body element
     _content.Add(properties);
 }
Example #3
0
 public SectionBreakParagraph(SectionProperties properties)
 {
     _properties = properties;
 }