AddPrivateDictionaryElement Method
In This Topic
Adds Private Data Element Creator to the Dictionary.
Syntax
'Declaration
Public Shared Sub AddPrivateDictionaryElement( _
ByVal As System.Integer, _
ByVal As System.Byte, _
ByVal As System.String, _
ByVal As System.String, _
ByVal As System.String, _
ByVal As System.String _
)
'Usage
Dim Group As System.Integer
Dim Element As System.Byte
Dim Creator As System.String
Dim VR As System.String
Dim VM As System.String
Dim Description As System.String
DicomGlobal.AddPrivateDictionaryElement(Group, Element, Creator, VR, VM, Description)
public static void AddPrivateDictionaryElement(
System.int ,
System.byte ,
System.string ,
System.string ,
System.string ,
System.string
)
public procedure AddPrivateDictionaryElement(
: System.Integer;
: System.Byte;
: System.String;
: System.String;
: System.String;
: System.String
); static;
public static function AddPrivateDictionaryElement(
: System.int,
: System.byte,
: System.String,
: System.String,
: System.String,
: System.String
);
public: static void AddPrivateDictionaryElement(
System.int ,
System.byte ,
System.string* ,
System.string* ,
System.string* ,
System.string*
)
public:
static void AddPrivateDictionaryElement(
System.int ,
System.byte ,
System.String^ ,
System.String^ ,
System.String^ ,
System.String^
)
Parameters
- Group
- Integer value, the group index of the data element.
- Element
- Byte value, the element index of the data element. Value shall be within range of 0x10 - 0xFF
- Creator
- The name of the private creator
- 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.8 or higher
See Also