SvgSaveOptions.ShowPageBorder

SvgSaveOptions ShowPageBorder property. Controls whether a border is added to the outline of the page. Default is true.

SvgSaveOptions.ShowPageBorder property

Controls whether a border is added to the outline of the page. Default is true.

public bool ShowPageBorder { get; set; }

Examples

Shows how to disable rendering page border in SVG.

SvgSaveOptions svgSaveOptions = new SvgSaveOptions();
svgSaveOptions.ShowPageBorder = false;

Converter.Create()
    .From(MyDir + "Simple.docx")
    .To(ArtifactsDir + "SvgSaveOptions.ShowPageBorder.svg", svgSaveOptions)
    .Execute();

See Also