示例#1
0
def given_a_table_cell(context):
    table = Document().add_table(rows=2, cols=2)
    context.cell = table.cell(0, 0)
示例#2
0
def given_a_table_cell(context):
    table = Document().add_table(rows=2, cols=2)
    context.cell = table.cell(0, 0)
示例#3
0
文件: cell.py 项目: 74n3r/python-docx
def given_a_table_cell(context):
    table = Document(test_docx('tbl-2x2-table')).tables[0]
    context.cell = table.cell(0, 0)
示例#4
0
def given_a_table_cell(context):
    table = Document(test_docx('tbl-2x2-table')).tables[0]
    context.cell = table.cell(0, 0)
示例#5
0
def given_a_Cell_object_as_cell(context):
    table = Document(test_docx("tbl-2x2-table")).tables[0]
    context.cell = table.cell(0, 0)