Copy link to clipboard
Copied
Hi everybody,
Today I am stuck with this check box to be enable/disable. I tried searching but could not find.
Please guide me on this, how to check/uncheck the box in article "Use for Reading Order in Tagged PDF".
Thanks
Sunil Yadav
1 Correct answer
Hi @Sunil Yadav,
To enable it, try the following
app.documents[0].taggedPDFPreferences.structureOrder = TaggedPDFStructureOrderOptions.USE_ARTICLES
To disable it try the following
app.documents[0].taggedPDFPreferences.structureOrder = TaggedPDFStructureOrderOptions.USE_XML_STRUCTURE
Hopefully, it should work
-Manan
Copy link to clipboard
Copied
Hi @Sunil Yadav,
To enable it, try the following
app.documents[0].taggedPDFPreferences.structureOrder = TaggedPDFStructureOrderOptions.USE_ARTICLES
To disable it try the following
app.documents[0].taggedPDFPreferences.structureOrder = TaggedPDFStructureOrderOptions.USE_XML_STRUCTURE
Hopefully, it should work
-Manan
Copy link to clipboard
Copied
Thanks @Manan Joshi for the real quick reply.
I was making a really small mistake for this.
I was trying to do it for Application, that is the reason may be I was not getting that.
app.taggedPDFPreferences.structureOrder = TaggedPDFStructureOrderOptions.USE_ARTICLES;
Thanks for clearifying my concern.
Sunil

