Nutrient Web SDK
    Preparing search index...

    Interface KeepPagesOperation

    Removes all pages from the document except for the pages specified in the pageIndexes array.

    instance.applyOperations([{
    type: "keepPages",
    pageIndexes: [1, 2]
    }]);
    interface KeepPagesOperation {
        pageIndexes: number[];
        type: "keepPages";
    }
    Index

    Properties

    Properties

    pageIndexes: number[]
    type: "keepPages"