Previous Document Next Document
StructSaveAsOptions.EmbedICCProfile

Property EmbedICCProfile As Boolean

Member of StructSaveAsOptions

The EmbedICCProfile property returns or sets whether an ICC profile is embedded in the document when it is saved.

The following code example saves the active document to a file. The VBA Project is included in the file; however, an ICC color profile and a CMX data stream are not saved.

Sub Test() 
 Dim so As New StructSaveAsOptions 
 so.EmbedICCProfile = False 
 so.EmbedVBAProject = True 
 so.IncludeCMXData = False 
 ActiveDocument.SaveAs "C:\Temp\File.cdr", so 
End Sub 

Previous Document Next Document Back to Top

Copyright 2007 Corel Corporation. All rights reserved.