Hi Aaron,
Thanks for your inquiry.
Sure, using the Shape class you can create or modify shapes in a Microsoft Word document. A Shape represents an object in the drawing layer, such as an AutoShape, textbox, freeform, OLE object, ActiveX control, or picture. You can place a floating Shape anywhere inside the page. Please try run the following code for an example:
DocumentBuilder builder = new DocumentBuilder();
Shape shape = builder.InsertImage(@"C:\Temp\Aspose.Words.png");
shape.WrapType = WrapType.None;
shape.Left -= 100;
builder.Document.Save(@"C:\Temp\out.doc");
Please let me know if I can be of any further assistance.
Best regards,