Anonymous
EXIF is an interface wrapper accessible as a property of the Document object that makes the EXIF data accessible to scripts.
// display a message with camera model if it exists
if (Document.EXIF != null && Document.EXIF.Exists)
Application.MessageBox(Document.EXIF.GetValueByName("Model"), "Model", false);