I've got two different raster layers in different frames. The frames are at different scales.
It doesn't seem to matter whether the one raster is listed first or second - it always draws on top.
But I'd like to put it on the bottom - of course do this programmatically.
I've fooled around with things like this:
If pAV.IsMapActivated Then
pDoc.ActiveView = aMap
pGC.AddElement(qMapElement, 1)
pGC.AddElement(pMapElement, 3)
Else
pAV.GraphicsContainer.AddElement(qMapElement, 1)
pAV.GraphicsContainer.AddElement(pMapElement, 3)
End If
But they don't seem to help.....