There isn't native CVI functions for dealing with this. If you are trying to print an ActiveX control through CVI, you can just use the CVI PrintCtrl function. It supports ActiveX controls. If you want to save it an image of the ActiveX control to a file you can call GetCtrlDisplayBitmap, then SaveBitmapToFile from the Programmer's Toolbox like:
GetCtrlDisplayBitmap (panel, PANEL_CWGRAPH, 0, &hBitmap);
SaveBitmapToFile ("c:\\test.bmp", hBitmap);
You can deal with the metafile in CVI instead, but you would have to use SDK programming and it would be much more difficult. Post back if you have more questions.
Best Regards,
Chris Matthews
National Instruments