Arbortext IsoDraw > Macro Language Reference > Object Data Types > Application Object - Data Exchange Preferences > Export WMF
  
Export WMF
The WMF format is a format which could only be used on a Windows compatible computer.
app.wmf.extension
Returns and sets the file extension as string.
app.wmf.extension = "wmf"
app.wmf.enhanced
Returns and sets if the file should be written as enhanced metafile as boolean.
app.wmf.enhanced = TRUE
app.wmf.quality
Returns and sets the Enhanced Metafile (EMF) export quality (resolution) as integer. Valid quality values are 1 to 10. The default quality is 4. In Arbortext IsoDraw 7.3 and later, a quality value of 2 matches the EMF export quality in Arbortext IsoDraw 7.2.
This property corresponds to the Quality setting under Export on the WMF preferences panel.
# Return the current EMF export quality value:
Message "Current EMF export quality is " + app.WMF.quality

# Set the EMF export quality to the maximum:
app.WMF.quality = 10