如何在表格单元格中旋转文本?

时间:2017-12-10 10:44:51

标签: python-docx

我正试图像这样制作表格:

Table with vertical header cells

如您所见,标题是垂直方向的。 如何使用python-docx实现这一目标?

P.S。对不起翻译的表格感到抱歉。

1 个答案:

答案 0 :(得分:3)

为那些太累而无法寻求的人提供代码:

from docx.oxml import OxmlElement
from docx.oxml.ns import qn
from docx.table import _Cell


def set_vertical_cell_direction(cell: _Cell, direction: str):
    # direction: tbRl -- top to bottom, btLr -- bottom to top
    assert direction in ("tbRl", "btLr")
    tc = cell._tc
    tcPr = tc.get_or_add_tcPr()
    textDirection = OxmlElement('w:textDirection')
    textDirection.set(qn('w:val'), direction)  # btLr tbRl
    tcPr.append(textDirection)