1

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.

GregC
  • 7,737
  • 2
  • 53
  • 67
David Lopez
  • 141
  • 1
  • 3
  • 4

1 Answers1

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);