remove method

remove()

Removes SoftEdgeFormat from the parent object.

remove()

Examples

Shows how to set limit for image resolution.

let doc = new aw.Document(base.myDir + "Rendering.docx");

let saveOptions = new aw.Saving.SvgSaveOptions();
saveOptions.maxImageResolution = 72;

doc.save(base.artifactsDir + "SvgSaveOptions.maxImageResolution.svg", saveOptions);

See Also