Skip to content

Documentation error: table.cells should be table.cell  #166

Open
@proxyblue

Description

@proxyblue

http://python-docx.readthedocs.org/en/latest/dev/analysis/features/cell-merge.html

table = document.add_table(3, 3)
a = table.cells(0, 0)
b = table.cells(1, 1)
A = a.merge(b)

should be

table = document.add_table(3, 3)
a = table.cell(0, 0)
b = table.cell(1, 1)
A = a.merge(b)

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions