Sub del_obj_on_pages()
Dim obj As Shape, p As Page
ActiveDocument.Unit = cdrMillimeter
For Each p In ActiveDocument.Pages
If p.Index > 0 Then
Set obj = p.SelectShapesFromRectangle(172, 19, 204, 7, True) 'https://community.coreldraw.com/sdk/api/draw/19/m/page.selectshapesfromrectangle
If obj.Shapes.Count > 0 Then obj.Delete
End If
Next p
End Sub