Enum ParagraphAlignment
Paragraph alignment (ECMA-376 Part 1 §17.18.44 ST_Jc). The DOM stores the value as
written; Start/End are logical values that the style resolver maps to
physical Left/Right using the paragraph's bidirectional setting.
public enum ParagraphAlignment
Fields
Start = 0Aligned to the leading edge (w:jc "start").
Center = 1Centered (w:jc "center").
End = 2Aligned to the trailing edge (w:jc "end").
Justify = 3Justified with flexible inter-word spacing (w:jc "both").
MediumKashida = 4Justified with medium kashida length (w:jc "mediumKashida").
Distribute = 5Justified by expanding inter-character spacing (w:jc "distribute").
NumTab = 6Aligned to the list tab (w:jc "numTab", legacy).
HighKashida = 7Justified with widest kashida length (w:jc "highKashida").
LowKashida = 8Justified with shortest kashida length (w:jc "lowKashida").
ThaiDistribute = 9Justified per Thai conventions (w:jc "thaiDistribute").
Left = 10Physically left-aligned (w:jc "left").
Right = 11Physically right-aligned (w:jc "right").