In MS Word I draw rectangle as Autoshape with Win32com, but I can't understand how to change its colors with FillFormat.
word = win32com.client.gencache.EnsureDispatch('Word.Application')
document = word.ActiveDocument
rect = shapes.AddShape(1, 56.7, 14.2, 524.4, 813.5)
By default it provides solid blue figure. What I need is transparent rectangle with black thick border.