MSWord.Shape temp = wordDoc.Shapes[1];
wordDoc.Shapes.AddPicture(jpgName, ref linkToFile, ref saveWithDocument, temp.Left, temp.Top, temp.Width, temp.Height, temp.Anchor);
MSWord.Shape now = wordDoc.Shapes[2];
MSWord.WdWrapType t = temp.WrapFormat.Type;
now.WrapFormat.AllowOverlap = temp.WrapFormat.AllowOverlap;
now.WrapFormat.Type = MSWord.WdWrapType.wdWrapInline;
now.WrapFormat.Side = (MSWord.WdWrapSideType)MSWord.WdWrapType.wdWrapNone;我这样设置的 但是图片始终在文字上面,求解啊