Image Viewer CP ActiveX Control

GetExifTagsValue  

 

Return the Tag Value at the specified index.

Public Function GetExifTagsValue (
  ByVal index As Integer
) As String

 

Parameter
the index of EXIF Tag.

Return Value

Return the value of tag EXIF tag


Example

   

Visual Basic Syntax
ImageViewer1.FileName="c:\test.jpg"
iCount = ImageViewer1.GetExifTagsCount - 1
For i = 0 To iCount
   strTagName = ImageViewer1.GetExifTagsName(i)
   strTagValue = ImageViewer1.GetExifTagsValue(i)
Next