Hi Jay,
Assuming your drawing is a Word rectangle autoshape, you could use code like:
Code:
Sub Demo()
Dim Shp As Shape
With ActiveDocument
For Each Shp In .Shapes
If Shp.Type = msoAutoShape Then
If Shp.AutoShapeType = msoShapeRectangle Then Shp.Delete
End If
Next
End With
End Sub