idPrefix property

SvgSaveOptions.idPrefix property

Specifies a prefix that is prepended to all generated element IDs in the output document. Default value is null and no prefix is prepended.

get idPrefix(): string

Exceptions

exceptioncondition
RuntimeError (Proxy error(ArgumentException))The value does not meet the requirements specified above.

Remarks

If the prefix is specified, it can contain only letters, digits, underscores, and hyphens, and must start with a letter.

Examples

Shows how to add a prefix that is prepended to all generated element IDs (svg).

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

let saveOptions = new aw.Saving.SvgSaveOptions();
saveOptions.idPrefix = "pfx1_";

doc.save(base.artifactsDir + "SvgSaveOptions.IdPrefixSvg.html", saveOptions);

See Also