any suggestions on how I would code a function that would find a specific block (by name) and just delete that block? Set acadMyBlock = ThisDrawing.ModelSpace?? If acadMyBlock.Name = "BlockToDelete" Then acadMyBlock.Delete End If when I use property .Name is gives me "*Model_Space" for name, but I know the Name of the inserted block is "BlockToDelete" .what property should I call? I am having trouble syntaxing my object.