Working with interpreted values
Leave feedback
Sometimes it’s not really obvious what a particular metadata property is supposed to mean. A good example of such vague property is a numeric flag or enumeration. From release to release, we add interpreters to metadata properties extracted from various formats. To get a full list of properties having interpreted values for a particular file please use the below example:
advanced_usage.WorkingWithInterpretedValues
const metadata = new groupdocs.metadata.Metadata(Constants.InputDoc);
var properties = metadata.findProperties(new groupdocs.metadata.OfTypeSpecification(groupdocs.metadata.MetadataPropertyType.Integer));
for(var i=0;i<properties.getCount(); i++){
var property = properties.get_Item(i);
if(property.getInterpretedValue() != null)
{
console.log(property.getName());
console.log(property.getValue().getRawValue());
console.log(property.getInterpretedValue().getRawValue());
}
To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section.
You may easily run the code above and see the feature in action in our GitHub examples:
Along with a full featured Java library we provide simple, but powerful free Apps.
You are welcome to view and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images and more with our free online Free Online Document Metadata Viewing and Editing App.
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.