web-dev-qa-db-ja.com

python-docxでセルの境界線を設定する方法

Python-docxを使用してテーブルのセル境界を設定する必要がありますが、その方法が見つかりません。助けてください。

10
Valentin

git に投稿された問題を見てください。

デフォルトのテーブルスタイルを使用できます。

table = document.add_table(rows, cols)
table.style = 'TableGrid'
10
Iulian Stana

これが私のプロジェクトの1つで使用したスニペットです。結合されたセルでも機能します。

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

def set_cell_border(cell: _Cell, **kwargs):
    """
    Set cell`s border
    Usage:

    set_cell_border(
        cell,
        top={"sz": 12, "val": "single", "color": "#FF0000", "space": "0"},
        bottom={"sz": 12, "color": "#00FF00", "val": "single"},
        start={"sz": 24, "val": "dashed", "shadow": "true"},
        end={"sz": 12, "val": "dashed"},
    )
    """
    tc = cell._tc
    tcPr = tc.get_or_add_tcPr()

    # check for tag existnace, if none found, then create one
    tcBorders = tcPr.first_child_found_in("w:tcBorders")
    if tcBorders is None:
        tcBorders = OxmlElement('w:tcBorders')
        tcPr.append(tcBorders)

    # list over all available tags
    for Edge in ('start', 'top', 'end', 'bottom', 'insideH', 'insideV'):
        Edge_data = kwargs.get(Edge)
        if Edge_data:
            tag = 'w:{}'.format(Edge)

            # check for tag existnace, if none found, then create one
            element = tcBorders.find(qn(tag))
            if element is None:
                element = OxmlElement(tag)
                tcBorders.append(element)

            # looks like order of attributes is important
            for key in ["sz", "val", "color", "space", "shadow"]:
                if key in Edge_data:
                    element.set(qn('w:{}'.format(key)), str(Edge_data[key]))

使用可能な属性値について http://officeopenxml.com/WPtableBorders.php を確認してください

5
MadisonTrash
table = document.add_table(rows, cols)
table.style = 'Table Grid'

スタイルIDとしてTableGridを指定したスタイルの使用は非推奨です。したがって、名前を使用する必要があります。

table.style = 'Table Grid'

5
Satish Roddom