-1

我正在使用 odfpy 编写电子表格(ods),但我不知道如何使它对单元格使用粗体文本。

4

1 回答 1

0

您必须为"table-cell"族定义样式,例如:

from odf import opendocument
from odf.table import Table, TableRow, TableCell
from odf.style import Style, TextProperties
from odf.text import P

basedoc = opendocument.OpenDocumentSpreadsheet()
boldstyle = Style(name="BoldStyle", family="table-cell")
boldstyle.addElement(TextProperties(attributes={"fontweight": "bold"}))
basedoc.styles.addElement(boldstyle)

sheet = Table(name="Test")
tablerow = TableRow()
cell = TableCell(valuetype="string", stylename=boldstyle)
cell.addElement(P(text="bold cell"))
tablerow.addElement(cell)
sheet.addElement(tablerow)
basedoc.spreadsheet.addElement(sheet)
basedoc.save("test.ods")
于 2021-07-21T10:22:13.223 回答