AddDictionaryElement Method
 
            
                In This Topic
            
            Adds Non-Private Data Element to the Dictionary.
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Shared Sub AddDictionaryElement( _
   ByVal  As System.Integer, _
   ByVal  As System.Integer, _
   ByVal  As System.String, _
   ByVal  As System.String, _
   ByVal  As System.String _
) 
             
        
            
            'Usage
 
Dim Group As System.Integer
Dim Element As System.Integer
Dim VR As System.String
Dim VM As System.String
Dim Description As System.String
 
DicomGlobal.AddDictionaryElement(Group, Element, VR, VM, Description)
             
        
            
            public static void AddDictionaryElement( 
   System.int ,
   System.int ,
   System.string ,
   System.string ,
   System.string 
)
             
        
            
            public procedure AddDictionaryElement( 
    : System.Integer;
    : System.Integer;
    : System.String;
    : System.String;
    : System.String
); static; 
             
        
            
            public static function AddDictionaryElement( 
    : System.int,
    : System.int,
    : System.String,
    : System.String,
    : System.String
);
             
        
            
            public: static void AddDictionaryElement( 
   System.int ,
   System.int ,
   System.string* ,
   System.string* ,
   System.string* 
) 
             
        
            
            public:
static void AddDictionaryElement( 
   System.int ,
   System.int ,
   System.String^ ,
   System.String^ ,
   System.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.8 or higher
            
            See Also