S
Steve
The following code exports each of my tabs as PNG files for inclusion in a
document.
(Just like save as then selecting PNG file as file type|)
Dim mPage As Page
For Each mPage In Application.ActiveDocument.Pages
mPage.Export "C:\PicturesForDoc\" & mPage.Name & ".png"
Next
This works but orientation can be set on export dialog, but is not a
function of Export method.
Is there a way to set this via vba?
document.
(Just like save as then selecting PNG file as file type|)
Dim mPage As Page
For Each mPage In Application.ActiveDocument.Pages
mPage.Export "C:\PicturesForDoc\" & mPage.Name & ".png"
Next
This works but orientation can be set on export dialog, but is not a
function of Export method.
Is there a way to set this via vba?