Image Viewer CP ActiveX Control x64 ReferenceMethods GetExifTagsValue Image Viewer CP ActiveX Control GetExifTagsValue Return the Tag Value at the specified index. Public Function GetExifTagsValue ( ByVal index As Integer) As String Parameterthe index of EXIF Tag. Return ValueReturn the value of tag EXIF tag Example Visual Basic SyntaxImageViewer1.FileName="c:\test.jpg"iCount = ImageViewer1.GetExifTagsCount - 1For i = 0 To iCount strTagName = ImageViewer1.GetExifTagsName(i) strTagValue = ImageViewer1.GetExifTagsValue(i)Next