- index
- index of the DICOM sequence item to read
| Visual Basic (Declaration) | |
|---|---|
Overloads Public Function BeginReadItem( _ ByVal index As Integer _ ) As DicomDataSet | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As DicomDataSet Dim index As Integer Dim value As DicomDataSet value = instance.BeginReadItem(index) | |
| C# | |
|---|---|
public DicomDataSet BeginReadItem( int index ) | |
| C++/CLI | |
|---|---|
public: DicomDataSet^ BeginReadItem( int index ) | |
Parameters
- index
- index of the DICOM sequence item to read
Return Value
a reference to the DicomDataSetFor an example, refer to GetValue.
Use the index parameter to specify which item in the sequence to read. When all items from DICOM sequence, pass 0 for index, or use the overload that takes no index. BeginReadItem For more information, see BeginReadSequence
Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)
Reference
DicomDataSet ClassDicomDataSet Members
Overload List
BeginEditSequence(DicomElement,Boolean,Int64) Method
EndEditSequence Method
BeginEditItem(Int32) Method
EndEditItem Method
BeginReadSequence(DicomElement,Boolean,Int64) Method
EndReadSequence Method
BeginReadItem(Int32) Method
EndReadItem Method
Copy Code