Image Viewer CP ActiveX Control

DICOMGetTagsName  

 

Return the tag name for specific index.

Public Function DICOMGetTagsName( _
   ByVal iIndex As Integer
) As String

 

Parameter
iIndex
the index of tags, the first tags is 0.

Return Value

Return the name of tag.

Example

   

Visual Basic Syntax
ImageViewer1.DICOMLoadImage "c:\source.dcm"
For i = 0 To iCount - 1
    List1.AddItem Me.ImageViewer1.DICOMGetTagsName(i)
Next