如何使用 odfpy 在电子表格中使用粗体文本?
How to use bold text inside a spreadsheet using odfpy?
我正在使用 odfpy 编写电子表格 (ods),但我不知道如何让它对单元格使用粗体文本。
您必须为 "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")
我正在使用 odfpy 编写电子表格 (ods),但我不知道如何让它对单元格使用粗体文本。
您必须为 "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")