- index
- index of the DICOM sequence item to add or edit
| Visual Basic (Declaration) | |
|---|---|
Overloads Public Function BeginEditItem( _ 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.BeginEditItem(index) | |
| C# | |
|---|---|
public DicomDataSet BeginEditItem( int index ) | |
| C++/CLI | |
|---|---|
public: DicomDataSet^ BeginEditItem( int index ) | |
Parameters
- index
- index of the DICOM sequence item to add or edit
Return Value
a reference to the DicomDataSetFor an example, refer to GetValue.
Use the index parameter to specify which item in the sequence to edit or create. When creating a new DICOM sequence, pass 0 for index, or use the overload that takes no index. BeginEditItem For more information, see BeginEditSequence
Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)
Copy Code