Image Viewer CP ActiveX Control x64 ReferenceMethods GetExifTagsCount Image Viewer CP ActiveX Control GetExifTagsCount Return the total number of EXIF tag. Public Function GetExifTagsCount () As Integer No Parameter Return ValueReturn the total number of 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