How to rotate text in table cells?

南楼画角 提交于 2020-01-02 07:29:15

问题


I'm trying to make table like this:

As you can see, the header is vertically orientated. How can I achieve this using python-docx?

P.S. Sorry for non-translated table.


回答1:


Snippet for those who are too tired to seek:

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)


来源:https://stackoverflow.com/questions/47738013/how-to-rotate-text-in-table-cells

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!