Add(Int32,Int32,Object) Method
In This Topic
Creates and adds standard data elements to
DicomDataSet
Syntax
'Declaration
Public Overloads Sub Add( _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal As System.Object _
)
'Usage
Dim instance As DicomDataSet
Dim Group As System.Integer
Dim Element As System.Integer
Dim Value As System.Object
instance.Add(Group, Element, Value)
public void Add(
System.int ,
System.int ,
System.object
)
public procedure Add(
: System.Integer;
: System.Integer;
: System.TObject
);
public function Add(
: System.int,
: System.int,
: System.Object
);
public: void Add(
System.int ,
System.int ,
System.Object*
)
public:
void Add(
System.int ,
System.int ,
System.Object^
)
Parameters
- Group
The group index of a data element.
- Element
The element index of a data element.
- Value
The Value to be assigned
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also