79816258

Date: 2025-11-11 05:36:44
Score: 1.5
Natty:
Report link

You can set workbook.default_format_properties in 2 ways:

  1. When you create workbook, set the 'options' parameter:

    wb = Workbook(options={'default_format_properties': {'font_name': ...., 'font_size': ....}})

  2. After workbook created, before add_format(), set the 'default_format_properties' property:

    wb.default_format_properties = {'font_name': ...., 'font_size': ....}

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: alai04