은?, 지금까지 내가 가지고 :Python-docx, 테이블에서 셀 너비를 설정하는 방법은 무엇입니까? 테이블의 셀 너비를 설정하는 방법
from docx import Document
from docx.shared import Cm, Inches
document = Document()
table = document.add_table(rows=2, cols=2)
table.style = 'TableGrid' #single lines in all cells
table.autofit = False
col = table.columns[0]
col.width=Inches(0.5)
#col.width=Cm(1.0)
#col.width=360000 #=1cm
document.save('test.docx')
없음 이잖아요 어떤 번호 또는 내가 col.width에서 설정 한 단위, 폭은 변경되지 않습니다.
'for 셀, 너비가 zip 인 행 (row.cells, Inches (1), Inches (2), Inches (1.5)))을 사용하여 색인을 건너 뛸 수 있습니다. cell.width = width' – altendky