Type   Default Value   Read Only   Description
IPTCItem N/A Yes An IPTC entry from the current graphic.

 

   
Notes
 
     

The Item property allows you to access IPTC items referenced by name or number.

For details of the way in which IPTC items can be referred to by name see the Add method. Only the first matching item is returned.

 

   
See Also
 
     

Count property.
IPTCItem
object.
Value method.

 

   
Example
 
     

[VBScript]
Set gr = Server.CreateObject("ImageGlue7.Graphic")
theFile = Server.MapPath("iptc.tif")
gr.ReadIPTC = True
gr.SetFile theFile
Response.Write gr.IPTC.Item("Headline") & "<br>"
Response.Write gr.IPTC.Item("Caption") & "<br>"

This example writes the Headline and Caption from a TIFF file. An error will be raised if the IPTC data does not contain a headline and caption.