Packagecom.adobe.illustrator
Classpublic class ExportOptionsSVG
InheritanceExportOptionsSVG Inheritance IllustratorHostObject Inheritance CSHostObject Inheritance flash.utils.Proxy

Since : CS5

Options which may be supplied when exporting a document as an SVG file



Public Properties
 PropertyDefined By
  compressed : Boolean
should the exported file be compressed ( default: false )
ExportOptionsSVG
  coordinatePrecision : Number
decimal precision for element coordinate values ( 1 - 7; default: 3 )
ExportOptionsSVG
  cssProperties : SVGCSSPropertyLocation
how should the CSS properties of the document be included in the document ( default: SVGCSSPropertyLocation.STYLEATTRIBUTES )
ExportOptionsSVG
  documentEncoding : SVGDocumentEncoding
how should the text in the document be encoded ( default: SVGDocumentEncoding.ASCII )
ExportOptionsSVG
  DTD : SVGDTDVersion
the version of DTD that the exported file should be conforming to ( default: SVGDTDVersion.SVG1_1 )
ExportOptionsSVG
  embedRasterImages : Boolean
should the raster images in the exported file be included ( default: false )
ExportOptionsSVG
  fontSubsetting : SVGFontSubsetting
what font glyphs should be included in the exported file ( default: SVGFontSubsetting.ALLGLYPHS )
ExportOptionsSVG
  fontType : SVGFontType
the type of font that should be included in the exported file ( default: SVGFontType.CEFFONT )
ExportOptionsSVG
 InheritedhostObjectDelegate : HostObject
Getter for the delegate
CSHostObject
  includeFileInfo : Boolean
( default: false )
ExportOptionsSVG
  includeVariablesAndDatasets : Boolean
( default: false )
ExportOptionsSVG
  optimizeForSVGViewer : Boolean
( default: false )
ExportOptionsSVG
 Inheritedparent : *
[read-only]
IllustratorHostObject
  preserveEditability : Boolean
preserve Illustrator editing capabilities when exporting the document ( default: false )
ExportOptionsSVG
  slices : Boolean
preserve slice data in exported document ( default: false )
ExportOptionsSVG
  sVGAutoKerning : Boolean
is SVG auto kerning allowed? ( default: false )
ExportOptionsSVG
  sVGTextOnPath : Boolean
is SVG text-on-path construct allowed? ( default: false )
ExportOptionsSVG
Public Methods
 MethodDefined By
 Inherited
filterArgsForHBAPI(args:Array):Array
[static] Function to clean up the argument list and put it into a format that makes sense for HBAPI.
CSHostObject
 Inherited
filterSingleObjectForHBAPI(value:Object):Object
[static]
CSHostObject
 Inherited
getClassObjectForName(className:String):HostObject
[static] This returns a "Class" object, meaning, a HostObject that can be used to make static function calls or get static properties
CSHostObject
 Inherited
getSpecialTranslation(className:String, ho:HostObject, expectedReturnType:Class, ownerName:String):*
[static]
CSHostObject
 Inherited
hostCall(name:String, expectedReturnType:Class, rawargs:Array):*
Encapsulates a function call to the host
CSHostObject
 Inherited
hostCallStatic(className:String, methodName:String, expectedReturnType:Class, rawargs:Array):*
[static] Implements a safe call of a static method on the host
CSHostObject
 Inherited
hostGet(name:String, expectedReturnType:Class):*
Encapsulates a property get to the host
CSHostObject
 Inherited
hostGetIndex(idx:Object, expectedReturnType:Class):*
Encapsulates a indexed get to the host
CSHostObject
 Inherited
hostGetStatic(className:String, propertyName:String, expectedReturnType:Class):*
[static] Implements a safe get of a static property on the host Used by for instance, all the enum implementations.
CSHostObject
 Inherited
hostSet(name:String, rawvalue:*):void
Encapsulates a property set to the host
CSHostObject
 Inherited
hostSetStatic(className:String, propertyName:String, rawvalue:*):*
[static] Implements a safe set of a static property on the host
CSHostObject
 Inherited
isDescendedFrom(clz:Class, ancClass:Class):Boolean
[static] Efficiently determines whether or not one class descends from another in inheritance hierarchy- class relationships are cached by the ClassUtils implementation- (uses org.as3commons lib to quickly discover class hierarchy.
CSHostObject
 Inherited
replaceDefaultArgs(args:Array, defaultArgs:Array):Array
Function to tidy up arguments prior to call.
CSHostObject
 Inherited
wrapReturnedHostObject(rawObject:Object, expectedReturnType:Class, client:CSHostObject, propertyName:String):*
[static] Method used on static/normal get/ hostcalls
CSHostObject
Protected Methods
 MethodDefined By
 Inherited
createWithArgs(args:Array):void
CSHostObject
 Inherited
hostCreate(args:Array):void
CSHostObject
Property Detail
compressedproperty
compressed:Boolean

Since : CS5

should the exported file be compressed ( default: false )


Implementation
    public function get compressed():Boolean
    public function set compressed(value:Boolean):void
coordinatePrecisionproperty 
coordinatePrecision:Number

Since : CS5

decimal precision for element coordinate values ( 1 - 7; default: 3 )


Implementation
    public function get coordinatePrecision():Number
    public function set coordinatePrecision(value:Number):void
cssPropertiesproperty 
cssProperties:SVGCSSPropertyLocation

Since : CS5

how should the CSS properties of the document be included in the document ( default: SVGCSSPropertyLocation.STYLEATTRIBUTES )


Implementation
    public function get cssProperties():SVGCSSPropertyLocation
    public function set cssProperties(value:SVGCSSPropertyLocation):void
documentEncodingproperty 
documentEncoding:SVGDocumentEncoding

Since : CS5

how should the text in the document be encoded ( default: SVGDocumentEncoding.ASCII )


Implementation
    public function get documentEncoding():SVGDocumentEncoding
    public function set documentEncoding(value:SVGDocumentEncoding):void
DTDproperty 
DTD:SVGDTDVersion

Since : CS5

the version of DTD that the exported file should be conforming to ( default: SVGDTDVersion.SVG1_1 )


Implementation
    public function get DTD():SVGDTDVersion
    public function set DTD(value:SVGDTDVersion):void
embedRasterImagesproperty 
embedRasterImages:Boolean

Since : CS5

should the raster images in the exported file be included ( default: false )


Implementation
    public function get embedRasterImages():Boolean
    public function set embedRasterImages(value:Boolean):void
fontSubsettingproperty 
fontSubsetting:SVGFontSubsetting

Since : CS5

what font glyphs should be included in the exported file ( default: SVGFontSubsetting.ALLGLYPHS )


Implementation
    public function get fontSubsetting():SVGFontSubsetting
    public function set fontSubsetting(value:SVGFontSubsetting):void
fontTypeproperty 
fontType:SVGFontType

Since : CS5

the type of font that should be included in the exported file ( default: SVGFontType.CEFFONT )


Implementation
    public function get fontType():SVGFontType
    public function set fontType(value:SVGFontType):void
includeFileInfoproperty 
includeFileInfo:Boolean

Since : CS5

( default: false )


Implementation
    public function get includeFileInfo():Boolean
    public function set includeFileInfo(value:Boolean):void
includeVariablesAndDatasetsproperty 
includeVariablesAndDatasets:Boolean

Since : CS5

( default: false )


Implementation
    public function get includeVariablesAndDatasets():Boolean
    public function set includeVariablesAndDatasets(value:Boolean):void
optimizeForSVGViewerproperty 
optimizeForSVGViewer:Boolean

Since : CS5

( default: false )


Implementation
    public function get optimizeForSVGViewer():Boolean
    public function set optimizeForSVGViewer(value:Boolean):void
preserveEditabilityproperty 
preserveEditability:Boolean

Since : CS5

preserve Illustrator editing capabilities when exporting the document ( default: false )


Implementation
    public function get preserveEditability():Boolean
    public function set preserveEditability(value:Boolean):void
slicesproperty 
slices:Boolean

Since : CS5

preserve slice data in exported document ( default: false )


Implementation
    public function get slices():Boolean
    public function set slices(value:Boolean):void
sVGAutoKerningproperty 
sVGAutoKerning:Boolean

Since : CS5

is SVG auto kerning allowed? ( default: false )


Implementation
    public function get sVGAutoKerning():Boolean
    public function set sVGAutoKerning(value:Boolean):void
sVGTextOnPathproperty 
sVGTextOnPath:Boolean

Since : CS5

is SVG text-on-path construct allowed? ( default: false )


Implementation
    public function get sVGTextOnPath():Boolean
    public function set sVGTextOnPath(value:Boolean):void