Add(String,Object) Method
In This Topic
Creates and adds standard data elements to the underlying
DicomDataSet
Syntax
'Declaration
Public Overloads Sub Add( _
ByVal As System.String, _
ByVal As System.Object _
)
'Usage
Dim instance As DicomImage
Dim Keyword As System.String
Dim Value As System.Object
instance.Add(Keyword, Value)
public void Add(
System.string ,
System.object
)
public procedure Add(
: System.String;
: System.TObject
);
public function Add(
: System.String,
: System.Object
);
public: void Add(
System.string* ,
System.Object*
)
public:
void Add(
System.String^ ,
System.Object^
)
Parameters
- Keyword
The DICOM Keyword of the data element.
- Value
The Value to be assigned
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also