DicomObjects.NET Core Documentation
DicomObjects Namespace / DicomDataSet Class / Add Method / Add(Keyword,String,Object) Method

The DICOM Keyword of the data element.

The value representation (2 character string) of the data element to be added

The Value to be assigned




In This Topic
    Add(Keyword,String,Object) Method
    In This Topic
    Creates and adds standard data elements to DicomDataSet
    Syntax
    'Declaration
     
    
    Public Overloads Sub Add( _
       ByVal Keyword As Keyword, _
       ByVal VR As String, _
       ByVal Value As Object _
    ) 
    'Usage
     
    
    Dim instance As DicomDataSet
    Dim Keyword As Keyword
    Dim VR As String
    Dim Value As Object
     
    instance.Add(Keyword, VR, Value)
    public void Add( 
       Keyword Keyword,
       string VR,
       object Value
    )
    public:
    void Add( 
       Keyword Keyword,
       String^ VR,
       Object^ Value
    ) 

    Parameters

    Keyword

    The DICOM Keyword of the data element.

    VR

    The value representation (2 character string) of the data element to be added

    Value

    The Value to be assigned

    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