DicomObjects.NET.V8
DicomObjects Namespace / DicomDataSetCollection Class / Remove Method / Remove(String) Method

The InstanceUID of the DicomDataSet to be removed from the DicomDataSetCollection




In This Topic
    Remove(String) Method
    In This Topic
    Removes DicomDataSet from a DicomDataSetCollectionby matching its InstanceUID
    Syntax
    'Declaration
     
    Public Overloads Sub Remove( _
       ByVal InstanceUID As String _
    ) 
    'Usage
     
    Dim instance As DicomDataSetCollection
    Dim InstanceUID As String
     
    instance.Remove(InstanceUID)
    public void Remove( 
       string InstanceUID
    )
    public:
    void Remove( 
       String^ InstanceUID
    ) 

    Parameters

    InstanceUID

    The InstanceUID of the DicomDataSet to be removed from the DicomDataSetCollection

    Remarks
    The first DicomDataSet objects with the same InstanceUID will be removed from the Collection.
    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also