DicomObjects.NET Core Documentation
DicomObjects Namespace / DicomGlobal Class / AddPrivateDictionaryElement Method
Integer value, the group index of the data element.
Byte value, the lower byte element index of the data element.
The name of the private creator
String value, the value representation of the new data element.
String value, the value multiplicity of the data element.
String value, the description of the data element.



In This Topic
    AddPrivateDictionaryElement Method
    In This Topic
    Adds Private Data Element to the Dictionary.
    Syntax
    'Declaration
     
    
    Public Shared Sub AddPrivateDictionaryElement( _
       ByVal Group As Integer, _
       ByVal Element As Byte, _
       ByVal Creator As String, _
       ByVal VR As String, _
       ByVal VM As String, _
       ByVal Description As String _
    ) 
    'Usage
     
    
    Dim Group As Integer
    Dim Element As Byte
    Dim Creator As String
    Dim VR As String
    Dim VM As String
    Dim Description As String
     
    DicomGlobal.AddPrivateDictionaryElement(Group, Element, Creator, VR, VM, Description)
    public static void AddPrivateDictionaryElement( 
       int Group,
       byte Element,
       string Creator,
       string VR,
       string VM,
       string Description
    )
    public:
    static void AddPrivateDictionaryElement( 
       int Group,
       byte Element,
       String^ Creator,
       String^ VR,
       String^ VM,
       String^ Description
    ) 

    Parameters

    Group
    Integer value, the group index of the data element.
    Element
    Byte value, the lower byte element index of the data element.
    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: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also