Skip to content

Multipage Processing

  • Show/hide the Skip Page button:
DocumentReader.setConfig({
    functionality: {
        showSkipNextPageButton: true
    }
});
  • Set the hex color code for the Skip Page button background:
DocumentReader.setConfig({
    customization: {
        multipageButtonBackgroundColor: "#e02712"
    }
});

  • Turn on/off the expecting page turn animation:
DocumentReader.setConfig({
    customization: {
        showNextPageAnimation: true
    }
});
  • You can set a front image for the multipage animation. If not set, the default image is used:
DocumentReader.setConfig({
    customization: {
        multipageAnimationFrontImage: "Base64String"
    }
});
  • Change the content mode of the front image of the multipage animation:
DocumentReader.setConfig({
    customization: {
        multipageAnimationFrontImageContentMode: Enum.UIViewContentMode.ScaleAspectFit
    }
});
  • You can set a back image for the multipage animation. If not set, the default image is used:
DocumentReader.setConfig({
    customization: {
        multipageAnimationBackImage: "Base64String"
    }
});
  • Change the content mode of the back image of the multipage animation:
DocumentReader.setConfig({
    customization: {
        multipageAnimationBackImageContentMode: Enum.UIViewContentMode.ScaleAspectFit
    }
});

Next Steps