VBA - Prevent form embedding when saving from Macro

Does anyone know how I can prevent the Fonts to be embedded when saving via VBA Macro?
Unfortunately I wasn't able to find something similar to the ".EmbedICCProfile = False" in StructSaveAsOptions.
Any ideas?

Thanks!

Parents
No Data
Reply
  • Im sure there is a simple way, but I've not come across it yet.

    But for the mean time you could try rolling the save version back to X6 when embedding fonts wasn't a feature.
    Though not ideal It's a work around for the short term.

    Also I haven't tested whether saving through VBA uses your Corel default save setting. It might be worth checking out. You can disable embedding fonts in your options.

    From the references:

    Sub Test()
    Dim so As New StructSaveAsOptions
    so.Version = cdrVersion16
    ActiveDocument.SaveAs "C:\Temp\File7.cdr", so
    End Sub
Children