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(file_name=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(file_name=ARTIFACTS_DIR + 'ParagraphFormat.ParagraphBaselineAlignment.docx')

See Also