2014-05-18 2 views
4

:굵게 테이블 세포

table = document.add_table(rows=1, cols=8) 
hdr_cells = table.rows[0].cells 
hdr_cells[0].text = 'Name' 
hdr_cells[1].text = 'Surname' 
hdr_cells[2].text = 'Telephone' 
(...) 

가 굵은이 세포를 만들 수 있습니까? 더 단계별

hdr_cells[0].paragraphs[0].add_run('Name').bold = True 

또는 :이이 특별한 경우에 트릭을 할해야

hdr_cells[0].text = 'Name' 
hdr_cells[1].text = 'Surname' 
hdr_cells[2].text = 'Telephone' 
hdr_cells[0].text.bold = True 
hdr_cells[1].text.bold = True 
hdr_cells[2].text.bold = True 

답변

5

: 뭐 그런

col_names = ('Name', 'Surname', 'Telephone') 
table = document.add_table(rows=1, cols=len(col_names)) 
hdr_cells = table.rows[0].cells 
for idx, name in enumerate(col_names): 
    paragraph = hdr_cells[idx].paragraphs[0] 
    run = paragraph.add_run(name) 
    run.bold = True 
+2

텍스트 색상을 추가 할 수 있나요 및 셀 배경색 등 – Yebach