MultiPageLayout.SinglePage

MultiPageLayout SinglePage method. Creates a layout that renders only the first of specified pages.

MultiPageLayout.SinglePage method

Creates a layout that renders only the first of specified pages.

public static MultiPageLayout SinglePage()

Examples

Shows how to export each page as separate SVG image.

ImageSaveOptions imgSaveOptions = new ImageSaveOptions(SaveFormat.Svg);
imgSaveOptions.PageLayout = MultiPageLayout.SinglePage();

Converter.Create()
    .From(MyDir + "Simple.docx")
    .To(ArtifactsDir + "MultiPageLayout.Vertical.svg", imgSaveOptions)
    .Execute();

See Also