softEdge property

ShapeBase.softEdge property

Gets soft edge formatting for the shape.

get softEdge(): Aspose.Words.Drawing.SoftEdgeFormat

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