I don't know how to insert a circle shape into my document. I'm using iterop.word intro c# and I need to insert 4 small circles into a clear document.
Asked
Active
Viewed 4,256 times
1 Answers
1
If you want to add a shapes to a word document, you can use the following method Document.Shapes.AddShape() and you can specify which shape you want to insert using this enumeration.
So if you want to add a circle you can do
wordDocument.Shapes.AddShape((int)Microsoft.Office.Core.MsoAutoShapeType.msoShapeOval,
20, 20, 40, 40);

PatrickBoyd
- 11
- 3