
    ,hW	                     b    d Z ddlmZ  G d de      ZeZ G d de      ZeZ G d de      ZeZy	)
zDEnumerations related to the main document in WordprocessingML files.   )BaseXmlEnumc                        e Zd ZdZdZ	 dZ	 dZy)WD_HEADER_FOOTER_INDEXa)  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.

    MS API name: `WdHeaderFooterIndex`
    URL: https://docs.microsoft.com/en-us/office/vba/api/word.wdheaderfooterindex
    )r   defaultz.Header for odd pages or all if no even header.)   firstz!Header for first page of section.)   evenz-Header for even pages of recto/verso section.N)__name__
__module____qualname____doc__PRIMARY
FIRST_PAGE	EVEN_PAGE     S/var/www/html/Resume-Scraper/venv/lib/python3.12/site-packages/docx/enum/section.pyr   r      s"     OG8BJ+LI7r   r   c                       e Zd ZdZdZ	 dZy)WD_ORIENTATIONaG  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

    MS API name: `WdOrientation`
    MS API URL: http://msdn.microsoft.com/en-us/library/office/ff837902.aspx
    )    portraitzPortrait orientation.)r   	landscapezLandscape orientation.N)r   r   r   r   PORTRAIT	LANDSCAPEr   r   r   r   r      s     8H:I r   r   c                   ,    e Zd ZdZdZ	 dZ	 dZ	 dZ	 dZy)WD_SECTION_STARTaN  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

    MS API name: `WdSectionStart`
    MS API URL: http://msdn.microsoft.com/en-us/library/office/ff840975.aspx
    )r   
continuouszContinuous section break.)r   
nextColumnzNew column section break.)r   nextPagezNew page section break.)r	   evenPagezEven pages section break.)   oddPagez Section begins on next odd page.N)	r   r   r   r   
CONTINUOUS
NEW_COLUMNNEW_PAGEr   ODD_PAGEr   r   r   r   r   7   s2     @J#?J#9H!<I#AH*r   r   N)	r   baser   r   WD_HEADER_FOOTERr   	WD_ORIENTr   
WD_SECTIONr   r   r   <module>r,      sE    J 8[ 8* * ![ !, 	+{ +> 
r   