Can I print a container control?

I have a number of instances of a container control in my project’s main application window. These are display-only controls, each consisting of a number of simple graphics items such as rectangles ovals and text. I’d like the user to be able to print out a copy of the window, but haven’t figured out how to send one of these container controls or an image of it to the page’s graphics object. It doesn’t appear that there is an embedwithin option available. Is there a simple way to do this?

Edit:
I should add that the components of these container controls are not static. The text and the color of the various components are set programatically. So, I need to be able to set these in the printed output.

You can use DrawInto to draw the container into the graphics object of the printer.

Perfect!
Couldn’t get much easier than that. Thanks.