Constructs a Dicom Element with a group, element numbers, Value Representation (VR) and a single int value.
Constructs a Dicom Element with a group, element numbers, Value Representation (VR) and a sequence.
public DicomElement(int,int,string,DicomSequence);
Constructs a Dicom Element with a group, element numbers, Value Representation (VR) and a array byte byte[] value.
public DicomElement(int,int,string,byte[]);
Constructs a Dicom Element with a group, element numbers, Value Representation (VR) and a double value.
public DicomElement(int,int,string,double);
Constructs a Dicom Element with a group, element numbers, Value Representation (VR) and a multiple double value.
public DicomElement(int,int,string,double[]);
Constructs a Dicom Element with a group, element numbers, Value Representation (VR) and a single int value.
public DicomElement(int,int,string,int);
Constructs a Dicom Element with a group, element numbers, Value Representation (VR) and a mutiple int values.
public DicomElement(int,int,string,int[]);
Constructs a Dicom Element with a group, element numbers, Value Representation (VR) and a string value.
public DicomElement(int,int,string,string);
Constructs a Dicom Element with a group, element numbers, Value Representation (VR) and a multiple String value.
public DicomElement(int,int,string,string[]);
DicomElement Class | dcmNET Namespace