In Mathematica 9, a graph is returned as an object with head Graph:
In[1]:= CompleteGraph[8] // Head
Out[1]= Graph
Right-clicking on a Graph object brings a menu with the option "Convert to Graphics". Selecting this option returns a new object which has head Graphics. I need to do this programmatically, but I haven't found any command that, applied to CompleteGraph[8] (to put an example), returns an object with head Graphics, with a plot of the graph.
Is there a command in Mathematica to convert a Graph to a Graphics?
Showprobably callsGraphConvertToGraphicsinternally. – a06e May 11 '13 at 16:54