AddDictionaryElement Method
In This Topic
Adds Data Element to the Dictionary.
Syntax
'Declaration
Public Shared Sub AddDictionaryElement( _
ByVal As Integer, _
ByVal As Integer, _
ByVal As String, _
ByVal As String, _
ByVal As String _
)
'Usage
Dim Group As Integer
Dim Element As Integer
Dim VR As String
Dim VM As String
Dim Description As String
DicomGlobal.AddDictionaryElement(Group, Element, VR, VM, Description)
public static void AddDictionaryElement(
int ,
int ,
string ,
string ,
string
)
public:
static void AddDictionaryElement(
int ,
int ,
String^ ,
String^ ,
String^
)
Parameters
- Group
- Integer value, the group index of the data element.
- Element
- Integer value, the element index of the data element.
- VR
- String value, the value representation of the new data element.
- VM
- String value, the value multiplicity of the data element.
- Description
- String value, the description of the data element.
Requirements
Target Platforms: .NET CLR 4.0 or higher
See Also