Section objects¶
Provides access to section properties such as margins and page orientation.
Sections objects¶
Section objects¶
- class docx.section.Section(sectPr, document_part)[source]¶
Document section, providing access to section and page setup settings.
Also provides access to headers and footers.
- property bottom_margin¶
Lengthobject representing the bottom margin for all pages in this section in English Metric Units.
True if this section displays a distinct first-page header and footer.
Read/write. The definition of the first-page header and footer are accessed using
first_page_headerandfirst_page_footerrespectively.
_Footerobject defining footer content for even pages.The content of this footer definition is ignored unless the document setting
odd_and_even_pages_header_footeris set True.
- property even_page_header¶
_Headerobject defining header content for even pages.The content of this header definition is ignored unless the document setting
odd_and_even_pages_header_footeris set True.
_Footerobject defining footer content for the first page of this section.The content of this footer definition is ignored unless the property
different_first_page_header_footeris set True.
- property first_page_header¶
_Headerobject defining header content for the first page of this section.The content of this header definition is ignored unless the property
different_first_page_header_footeris set True.
_Footerobject representing default page footer for this section.The default footer is used for odd-numbered pages when separate odd/even footers are enabled. It is used for both odd and even-numbered pages otherwise.
Lengthobject representing the distance from the bottom edge of the page to the bottom edge of the footer.Noneif no setting is present in the XML.
- property gutter¶
Lengthobject representing the page gutter size in English Metric Units for all pages in this section. The page gutter is extra spacing added to the inner margin to ensure even margins after page binding.
- property header¶
_Headerobject representing default page header for this section.The default header is used for odd-numbered pages when separate odd/even headers are enabled. It is used for both odd and even-numbered pages otherwise.
- property header_distance¶
Lengthobject representing the distance from the top edge of the page to the top edge of the header.Noneif no setting is present in the XML.
- property left_margin¶
Lengthobject representing the left margin for all pages in this section in English Metric Units.
- property orientation¶
Member of the WD_ORIENTATION enumeration specifying the page orientation for this section, one of
WD_ORIENT.PORTRAITorWD_ORIENT.LANDSCAPE.
- property page_height¶
Total page height used for this section, inclusive of all edge spacing values such as margins. Page orientation is taken into account, so for example, its expected value would be
Inches(8.5)for letter-sized paper when orientation is landscape.
- property page_width¶
Total page width used for this section, inclusive of all edge spacing values such as margins. Page orientation is taken into account, so for example, its expected value would be
Inches(11)for letter-sized paper when orientation is landscape.
- property right_margin¶
Lengthobject representing the right margin for all pages in this section in English Metric Units.
- property start_type¶
The member of the WD_SECTION_START enumeration corresponding to the initial break behavior of this section, e.g.
WD_SECTION.ODD_PAGEif the section should begin on the next odd page.