Svg File Transforms are Expanded Dialog box
Hello all,
SVG file during code execution i am getting dialog box Svg file Transforms are expanded i would like to close this popup through code it is possible
Please help me.
Code :
var exportOptions = new ExportOptionsSVG();
var type = ExportType.SVG;
var fileSpec = new File(sourceDoc.path);
exportOptions.embedRasterImages = true;
exportOptions.embedAllFonts = false;
exportOptions.fontSubsetting = SVGFontSubsetting.None;
exportOptions.preserveEditability = true;
exportOptions.fontType=SVGFontType.SVGFONT;
sourceDoc.exportFile( fileSpec, type, exportOptions );
sourceDoc.close ();
