I tried X2BoddyWrapper.IsVisible = False but to no avail.
I checked most games in the example pack and I only see the deletion of bodies.
I just need to make the body invisible/contactless while I animate an explosion over it.
i think you misunderstood how box2d (that is part of x2) works.
you don't hide bodies, bodies are basically a shape in your box2dworld that is not visible. with very complex mathematical formulas box2d is generating physics behavior on this shape (that is called PhysicBody). so box2d is just a library that calculates the physics for you then you need to draw with any rendering library the image to that body. so you cannot hide a body you can destroy it or create it but what you can do is stop rendering the image that is connected to that body.
the " X2BoddyWrapper.IsVisible " property just checks if the body is still inside the screen area. let say you create a body in your game and you have set the gravity to (0,-9.8)
which means the body will fall down. once it is outside your screen it will keep falling until another body (static body) will stop it like a ground. so there is no need to keep this body in the world and calculate all forces on it and to prevent unseen bodies to stay in the world you can check if there are inside the screen area and if not destroy them.
what you are describing is a different scenario. you don't need to hide the body you can destroy it and just hold a reference to the last position of this body and draw your explosion to that position.
why do you want to keep the body after you draw an explosion? (what should basically mean that the character or that object is destroyed in the game)