I am trying to add text to a shape but I can't figure out how to do it.. I am using the method
to add a shape to a document, but I can't find anything about adding text to the shape. Is it possible to do this?
Code:
public void DrawOnDoc(object oMissing, Microsoft.Office.Interop.Word._Document oDoc) { oDoc.Shapes.AddShape(1, (xPos / 2) + 100, (yPos / 2) + 100, nWidth / 2, nHeight / 2, oMissing); }
Comment