baseline_alignment property

ParagraphFormat.baseline_alignment property

Gets or sets fonts vertical position on a line.

@property
def baseline_alignment(self) -> aspose.words.BaselineAlignment:
    ...

@baseline_alignment.setter
def baseline_alignment(self, value: aspose.words.BaselineAlignment):
    ...

Examples

Shows how to set fonts vertical position on a line.

doc = aw.Document(MY_DIR + "Office math.docx")

format_ = doc.first_section.body.paragraphs[0].paragraph_format

if format_.baseline_alignment == aw.BaselineAlignment.AUTO:
    format_.baseline_alignment = aw.BaselineAlignment.TOP

doc.save(ARTIFACTS_DIR + "ParagraphFormat.ParagraphBaselineAlignment.docx")

See Also