是否可以在python-docx中将段落垂直和水平对齐?

时间:2018-06-22 12:44:41

标签: python python-docx

我知道您可以将段落与WD_ALIGN_PARAGRAPH水平对齐,我只是想知道是否可以在Word中执行类似的操作:“布局>对齐>居中对齐”以将文本垂直居中python-docx。

1 个答案:

答案 0 :(得分:0)

该库中目前尚无此方法。但是,我发现通过对齐现有文档中的文本,然后使用python-docx打开它,您可以简单地编辑文本并将保留其格式。

enter image description here

from docx import document

document = Document('template.docx')
# This just grabs the first paragraph, code assumes you've already applied formatting.
document.paragraphs[0].text = "Example Text"
document.save('output.docx')