File: //home/arjun/projects/env/lib64/python3.10/site-packages/docx/enum/__pycache__/text.cpython-310.pyc
o
$we$( � @ s� d Z ddlmZ ddlZddlmZ G dd� de�ZeZG dd� dej�Z e Z
G d d
� d
e�ZeZG dd� de�Z
G d
d� de�ZG dd� de�ZG dd� de�ZdS )z7Enumerations related to text in WordprocessingML files.� )�annotationsN)�BaseXmlEnumc @ sD e Zd ZdZdZ dZ dZ dZ dZ dZ dZ
d Z d
ZdS )�WD_PARAGRAPH_ALIGNMENTz�Alias: **WD_ALIGN_PARAGRAPH**
Specifies paragraph justification type.
Example::
from docx.enum.text import WD_ALIGN_PARAGRAPH
paragraph = document.add_paragraph()
paragraph.alignment = WD_ALIGN_PARAGRAPH.CENTER
)r �leftzLeft-aligned�� �centerzCenter-aligned.�� �rightzRight-aligned.)� �bothzFully justified.)� �
distributezGParagraph characters are distributed to fill entire width of paragraph.)� �
mediumKashidaz4Justified with a medium character compression ratio.)� �highKashidaz2Justified with a high character compression ratio.)� �
lowKashidaz1Justified with a low character compression ratio.)� �thaiDistributez.Justified according to Thai formatting layout.N)
�__name__�
__module__�__qualname__�__doc__�LEFT�CENTER�RIGHT�JUSTIFY�
DISTRIBUTE�JUSTIFY_MED�
JUSTIFY_HI�JUSTIFY_LOW�THAI_JUSTIFY� r% r% �G/home/arjun/projects/env/lib/python3.10/site-packages/docx/enum/text.pyr
s( r c @ s<