DICOM PlugIn ReferenceMethods DICOMGetTagsCount Image Viewer CP ActiveX Control DICOMGetTagsCount Return the total count of tags. Public Function DICOMGetTagsCount( ) As long No ParameterReturn ValueReturn the total count of tagsExample Visual Basic SyntaxImageViewer1.DICOMLoadImage "c:\source.dcm"iCount = Me.ImageViewer1.DICOMGetTagsCountFor i = 0 To iCount - 1 List1.AddItem Me.ImageViewer1.DICOMGetTagsName(i)Next