o
    †ø4\j
  ã                   @   sx   d Z ddlmZmZmZ ddlmZmZmZ edƒG dd„ deƒƒZ	edƒG d	d
„ d
eƒƒZ
edƒG dd„ deƒƒZdS )zE
Enumerations related to the main document in WordprocessingML files
é    )Úabsolute_importÚprint_functionÚunicode_literalsé   )ÚaliasÚXmlEnumerationÚXmlMappedEnumMemberZWD_HEADER_FOOTERc                   @   s@   e Zd ZdZdZdZeddddƒedd	d
dƒeddddƒfZdS )ÚWD_HEADER_FOOTER_INDEXz´
    alias: **WD_HEADER_FOOTER**

    Specifies one of the three possible header/footer definitions for a section.

    For internal use only; not part of the python-docx API.
    ZWdHeaderFooterIndexzHhttps://docs.microsoft.com/en-us/office/vba/api/word.wdheaderfooterindexZPRIMARYr   Údefaultz.Header for odd pages or all if no even header.Z
FIRST_PAGEé   Úfirstz!Header for first page of section.Ú	EVEN_PAGEé   Zevenz-Header for even pages of recto/verso section.N©Ú__name__Ú
__module__Ú__qualname__Ú__doc__Z__ms_name__Z__url__r   Ú__members__© r   r   úAD:\Projects\ConvertPro\env\Lib\site-packages\docx\enum\section.pyr	      s    ÿÿÿùr	   Z	WD_ORIENTc                   @   s4   e Zd ZdZdZdZeddddƒedd	d
dƒfZdS )ÚWD_ORIENTATIONzå
    alias: **WD_ORIENT**

    Specifies the page layout orientation.

    Example::

        from docx.enum.section import WD_ORIENT

        section = document.sections[-1]
        section.orientation = WD_ORIENT.LANDSCAPE
    ZWdOrientationz<http://msdn.microsoft.com/en-us/library/office/ff837902.aspxZPORTRAITr   ZportraitzPortrait orientation.Z	LANDSCAPEr   Z	landscapezLandscape orientation.Nr   r   r   r   r   r   '   s    ÿÿür   Z
WD_SECTIONc                	   @   sX   e Zd ZdZdZdZeddddƒedd	d
dƒeddddƒeddddƒeddddƒfZdS )ÚWD_SECTION_STARTzë
    alias: **WD_SECTION**

    Specifies the start type of a section break.

    Example::

        from docx.enum.section import WD_SECTION

        section = document.sections[0]
        section.start_type = WD_SECTION.NEW_PAGE
    ZWdSectionStartz<http://msdn.microsoft.com/en-us/library/office/ff840975.aspxZ
CONTINUOUSr   Z
continuouszContinuous section break.Z
NEW_COLUMNr   Z
nextColumnzNew column section break.ZNEW_PAGEr   ZnextPagezNew page section break.r   r   ZevenPagezEven pages section break.ZODD_PAGEé   ZoddPagez Section begins on next odd page.Nr   r   r   r   r   r   D   s(    ÿÿÿÿÿór   N)r   Z
__future__r   r   r   Úbaser   r   r   r	   r   r   r   r   r   r   Ú<module>   s   