ó
    §ïhg  ã                   óx   • S r SSKJrJr   " S S\5      r\r " S S\5      r\r " S S\5      r " S	 S
\5      r	g)z9Enumerations related to tables in WordprocessingML files.é    )ÚBaseEnumÚBaseXmlEnumc                   ó.   • \ rS rSrSrSr Sr Sr SrSr	g)	ÚWD_CELL_VERTICAL_ALIGNMENTé   av  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__Ú__firstlineno__Ú__doc__ÚTOPÚCENTERÚBOTTOMÚBOTHÚ__static_attributes__r   ó    ÚA/var/www/html/env/lib/python3.13/site-packages/docx/enum/table.pyr   r      s.   † ñð  G€CØ8àH€FØ4àO€FØ;ð€Dòr   r   c                   ó(   • \ rS rSrSrSr Sr SrSrg)ÚWD_ROW_HEIGHT_RULEé3   aV  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.r   N)	r   r   r   r   r   ÚAUTOÚAT_LEASTÚEXACTLYr   r   r   r   r   r   3   s$   † ñð €Dð
 RàV€HØ?à?€GÚ+r   r   c                   ó(   • \ rS rSrSrSr Sr SrSrg)ÚWD_TABLE_ALIGNMENTéU   a  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.r   N)	r   r   r   r   r   ÚLEFTr   ÚRIGHTr   r   r   r   r'   r'   U   s!   † ñð '€DØà-€FØà*€EÚr   r'   c                   ó"   • \ rS rSrSrSr SrSrg)ÚWD_TABLE_DIRECTIONén   aF  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.r   N)r   r   r   r   r   ÚLTRÚRTLr   r   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>r5      sM   ðÙ ?ç 0ô' ô 'ðT /Ð ô,˜ô ,ð> #€ô˜ô ô2X˜õ Xr   