DICOM PlugIn ReferenceMethods DICOMGetTagsName Image Viewer CP ActiveX Control DICOMGetTagsName Return the tag name for specific index. Public Function DICOMGetTagsName( _ ByVal iIndex As Integer) As String ParameteriIndexthe index of tags, the first tags is 0.Return ValueReturn the name of tag.Example Visual Basic SyntaxImageViewer1.DICOMLoadImage "c:\source.dcm"For i = 0 To iCount - 1 List1.AddItem Me.ImageViewer1.DICOMGetTagsName(i)Next