Номер страницы в оглавлении сбрасывается на 1 после разрыва раздела.Как я могу продолжить с нумерации предыдущей страницы?Это происходит, когда я переключаюсь с пейзажа на портрет в текстовом документе.
Paragraph paragraph4 = new Paragraph();
ParagraphProperties paragraphProperties2 = new ParagraphProperties();
SectionProperties sectionProperties2 = new SectionProperties();
PageSize pageSize2 = new PageSize() { Width = (UInt32Value)15840U, Height = (UInt32Value)12240U, Orient = PageOrientationValues.Landscape };
PageMargin pageMargin2 = new PageMargin() { Top = 1440, Right = (UInt32Value)1440U, Bottom = 1440, Left = (UInt32Value)1440U, Header = (UInt32Value)720U, Footer = (UInt32Value)720U, Gutter = (UInt32Value)0U };
Columns columns2 = new Columns() { Space = "720" };
DocGrid docGrid2 = new DocGrid() { LinePitch = 360 };
sectionProperties2.Append(pageSize2);
sectionProperties2.Append(pageMargin2);
sectionProperties2.Append(columns2);
sectionProperties2.Append(docGrid2);
paragraphProperties2.Append(sectionProperties2);
paragraph4.Append(paragraphProperties2);
return paragraph4;