pdfPagesLimit property
int?
get
pdfPagesLimit
Maximum number of pages to be processed in a PDF document. If set, only the specified number of pages will be analyzed.
Implementation
int? get pdfPagesLimit => _pdfPagesLimit;
set
pdfPagesLimit
(int? val)
Implementation
set pdfPagesLimit(int? val) {
_pdfPagesLimit = val;
_set({"pdfPagesLimit": val});
}