multipageProcessing property
bool?
get
multipageProcessing
If set to true
, processing of more than one page of the document
(if they exist) will be triggered, otherwise, only one page will be processed.
Implementation
bool? get multipageProcessing => _multipageProcessing;
set
multipageProcessing
(bool? val)
Implementation
set multipageProcessing(bool? val) {
_multipageProcessing = val;
_set({"multipageProcessing": val});
}