Used to create a new DICOM sequence, or edit an existing DICOM sequence
public DicomDataSet BeginEditSequence(
DicomElement element,
bool tree,
long tag
)
Public Overloads Function BeginEditSequence( _
ByVal element As Leadtools.Dicom.DicomElement, _
ByVal tree As Boolean, _
ByVal tag As Long _
) As Leadtools.Dicom.DicomDataSet
public:
Leadtools.Dicom.DicomDataSet^ BeginEditSequence(
Leadtools.Dicom.DicomElement^ element,
bool tree,
int64 tag
)
element
an item in the data set
tree
true to evaluate the Data Set as a tree; false to evaluate the Data Set as a list.
tag
tag number of the DICOM element sequence
a reference to the DicomDataSet
This method is used to begin editing an existing DICOM sequence, or to create a new DICOM sequence. It is part of a group of four methods that are to be used together. The four methods are listed below:
These methods are part of a fluent interface that are used to easily work with DICOM sequences. The methods can be chained together to create easily human readable code to create a sequence.
The DICOM sequence is created at the root of the DICOM data set by passing null for the parameter element, and true for the parameter tree. To create a sequence that is part of another sequence item, pass the sequence item element for the paramter element, and false for the parameter tree. For more information on the element and tree paramters, see FindFirstElement.
The format of the code for creating a sequence is as follows:
ds.BeginEditSequence
.BeginEditItem()
.InsertElementAndSetValue
.InsertElementAndSetValue
.EndEditItem()
.BeginEditItem()
.InsertElementAndSetValue
.InsertElementAndSetValue
.EndEditItem()
.EndEditSequence();
For an example, refer to GetValue.
BeginEditSequence(DicomElement,Boolean,Int64) Method
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET