Ë
    œ,hg  ã                   óx   — d Z ddlmZmZ  G d„ de«      ZeZ G d„ de«      ZeZ G d„ de«      Z G d	„ d
e«      Z	y)z9Enumerations related to tables in WordprocessingML files.é    )ÚBaseEnumÚBaseXmlEnumc                   ó&   — e Zd ZdZdZ	 dZ	 dZ	 dZy)ÚWD_CELL_VERTICAL_ALIGNMENTa–  Alias: **WD_ALIGN_VERTICAL**

    Specifies the vertical alignment of text in one or more cells of a table.

    Example::

        from docx.enum.table import WD_ALIGN_VERTICAL

        table = document.add_table(3, 3)
        table.cell(0, 0).vertical_alignment = WD_ALIGN_VERTICAL.BOTTOM

    MS API name: `WdCellVerticalAlignment`

    https://msdn.microsoft.com/en-us/library/office/ff193345.aspx
    )r   Útopz.Text is aligned to the top border of the cell.)é   Úcenterz*Text is aligned to the center of the cell.)é   Úbottomz1Text is aligned to the bottom border of the cell.)ée   ÚbothzîThis is an option in the OpenXml spec, but not in Word itself. It's not clear what Word behavior this setting produces. If you find out please let us know and we'll update this documentation. Otherwise, probably best to avoid this option.N)Ú__name__Ú
__module__Ú__qualname__Ú__doc__ÚTOPÚCENTERÚBOTTOMÚBOTH© ó    úQ/var/www/html/Resume-Scraper/venv/lib/python3.12/site-packages/docx/enum/table.pyr   r      s.   „ ñð  G€CØ8àH€FØ4àO€FØ;ð€Dðr   r   c                   ó    — e Zd ZdZdZ	 dZ	 dZy)ÚWD_ROW_HEIGHT_RULEav  Alias: **WD_ROW_HEIGHT**

    Specifies the rule for determining the height of a table row

    Example::

        from docx.enum.table import WD_ROW_HEIGHT_RULE

        table = document.add_table(3, 3)
        table.rows[0].height_rule = WD_ROW_HEIGHT_RULE.EXACTLY

    MS API name: `WdRowHeightRule`

    https://msdn.microsoft.com/en-us/library/office/ff193620.aspx
    )r   ÚautozGThe row height is adjusted to accommodate the tallest value in the row.)r   ÚatLeastz5The row height is at least a minimum specified value.)é   Úexactz!The row height is an exact value.N)r   r   r   r   ÚAUTOÚAT_LEASTÚEXACTLYr   r   r   r   r   3   s$   „ ñð €Dð
 RàV€HØ?à?€GØ+r   r   c                   ó    — e Zd ZdZdZ	 dZ	 dZy)ÚWD_TABLE_ALIGNMENTa2  Specifies table justification type.

    Example::

        from docx.enum.table import WD_TABLE_ALIGNMENT

        table = document.add_table(3, 3)
        table.alignment = WD_TABLE_ALIGNMENT.CENTER

    MS API name: `WdRowAlignment`

    http://office.microsoft.com/en-us/word-help/HV080607259.aspx
    )r   ÚleftzLeft-aligned)r   r	   zCenter-aligned.)r   ÚrightzRight-aligned.N)r   r   r   r   ÚLEFTr   ÚRIGHTr   r   r   r#   r#   U   s!   „ ñð '€DØà-€FØà*€EØr   r#   c                   ó   — e Zd ZdZdZ	 dZy)ÚWD_TABLE_DIRECTIONaf  Specifies the direction in which an application orders cells in the specified
    table or row.

    Example::

        from docx.enum.table import WD_TABLE_DIRECTION

        table = document.add_table(3, 3)
        table.direction = WD_TABLE_DIRECTION.RTL

    MS API name: `WdTableDirection`

    http://msdn.microsoft.com/en-us/library/ff835141.aspx
    )r   zLThe table or row is arranged with the first column in the leftmost position.)r   zMThe table or row is arranged with the first column in the rightmost position.N)r   r   r   r   ÚLTRÚRTLr   r   r   r)   r)   n   s!   „ ñð€Cð Wð€Cð Xr   r)   N)
r   Údocx.enum.baser   r   r   ÚWD_ALIGN_VERTICALr   ÚWD_ROW_HEIGHTr#   r)   r   r   r   ú<module>r/      sM   ðÙ ?ç 0ô' ô 'ðT /Ð ô,˜ô ,ð> #€ô˜ô ô2X˜õ Xr   