Image Viewer CP ActiveX Control

DICOMGetTagsSubItemValue

 

Return the subitem name for specific index and tags.

Public Function DICOMGetTagsSubItemName( _
   ByVal iIndex As Integer,_
   ByVal iSubItemIndex As Integer
 ) As String

 

Parameter
iIndex
the index of tag.

iSubItemIndex
the index of subitem.
Return Value

Return the subitem name for specific index and tags.

Example

   

Visual Basic Syntax
iCount = Me.ImageViewer1.DICOMGetTagsSubItemCount(Me.List1.ListIndex)
Me.List2.Clear
Me.List3.Clear
For i = 0 To iCount - 1
     List2.AddItem Me.ImageViewer1.DICOMGetTagsSubItemName(Me.List1.ListIndex, i)
Next