Previous Document Next Document

Object Model Reference : Classes : S : StructSaveAsOptions : Properties : StructSaveAsOptions.IncludeCMXData


StructSaveAsOptions.IncludeCMXData

Property IncludeCMXData As Boolean

Description

Member of StructSaveAsOptions

The IncludeCMXData property returns or specifies whether a saved document includes a duplicate data stream in CMX format.

VBA example

The following VBA example saves the active document to a file. The macro 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 2013 Corel Corporation. All rights reserved.