I am using Python-docx to generate a word file. I can add headings, paragraphs, and pictures, but I don't know how to add a textbox with a certain color or style.
doc.add_heading('Human Resources Department')
doc.add_paragraph('Overview', style = 'Title')
doc.add_picture('HR.jpg', width=Inches(4))
The above codes are for the headings, paragraphs, and pictures. How to add a Textbox?