Is there a way to change heading format font style and colors.
For example Heading 1 I want to change it to font 20 Color green
@Mark030 Sure, you can simply change heading style formatting:
doc = aw.Document("C:\\Temp\\in.docx")
heading1 = doc.styles.get_by_style_identifier(aw.StyleIdentifier.HEADING1)
heading1.font.color = pydraw.Color.green
heading1.font.size = 20
doc.save("C:\\Temp\\\out.docx")