The MarkInfo provides additional information relevant to specialized
uses of structured documents.
Method from org.apache.pdfbox.pdmodel.documentinterchange.logicalstructure.PDMarkInfo Detail: |
public COSBase getCOSObject() {
return dictionary;
}
Convert this standard java object to a COS object. |
public COSDictionary getDictionary() {
return dictionary;
}
Convert this standard java object to a COS object. |
public boolean isMarked() {
return dictionary.getBoolean( "Marked", false );
}
Tells if this is a tagged PDF. |
public boolean isSuspect() {
return dictionary.getBoolean( "Suspects", false );
}
Tells if this PDF contain 'suspect' tags. See PDF Reference 1.6
section 10.6 "Logical Structure" for more information about this property. |
public void setMarked(boolean value) {
dictionary.setBoolean( "Marked", value );
}
Set if this is a tagged PDF. |
public void setSuspect(boolean suspect) {
dictionary.setBoolean( "Suspects", false );
}
Set the value of the suspects property. See PDF Reference 1.6
section 10.6 "Logical Structure" for more information about this
property. |
public void setUserProperties(boolean userProps) {
dictionary.setBoolean( "UserProperties", userProps );
}
Set if the structure elements contain user properties. |
public boolean usesUserProperties() {
return dictionary.getBoolean( "UserProperties", false );
}
Tells if structure elements use user properties. |