Leadtools.Dicom.Services Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.25
DICOMTags Constructor(String,Int64,String,String)
See Also 
Leadtools.Dicom.Services.DataTypes Namespace > DICOMTags Class > DICOMTags Constructor : DICOMTags Constructor(String,Int64,String,String)



objectInstanceUID
A System.String representation for the SOP Instance UID.
tag
A number representing the DICOM element tag or 0 if the DICOMTag/> is not retrieved from the DICOM object.
tagName
The name of the DICOM tag.
tagValue
The System.String value of the DICOMTag/>
Initializes a new instance of the DICOMTags class.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal objectInstanceUID As String, _
   ByVal tag As Long, _
   ByVal tagName As String, _
   ByVal tagValue As String _
)
Visual Basic (Usage)Copy Code
Dim objectInstanceUID As String
Dim tag As Long
Dim tagName As String
Dim tagValue As String
 
Dim instance As New DICOMTags(objectInstanceUID, tag, tagName, tagValue)
C# 
public DICOMTags( 
   string objectInstanceUID,
   long tag,
   string tagName,
   string tagValue
)
C++/CLI 
public:
DICOMTags( 
   String^ objectInstanceUID,
   int64 tag,
   String^ tagName,
   String^ tagValue
)

Parameters

objectInstanceUID
A System.String representation for the SOP Instance UID.
tag
A number representing the DICOM element tag or 0 if the DICOMTag/> is not retrieved from the DICOM object.
tagName
The name of the DICOM tag.
tagValue
The System.String value of the DICOMTag/>

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also