DicomObjects.NET8 Documentation
DicomObjects Namespace / DicomDataSet Class / Remove Method / Remove(Predicate<DicomAttribute>) Method
The predicate to match the attributes to be removed



In This Topic
    Remove(Predicate<DicomAttribute>) Method
    In This Topic
    Removes the attributes from the DataSet that match the selector
    Syntax
    'Declaration
     
    
    Public Overloads Sub Remove( _
       ByVal selector As Predicate(Of DicomAttribute) _
    ) 
    'Usage
     
    
    Dim instance As DicomDataSet
    Dim selector As Predicate(Of DicomAttribute)
     
    instance.Remove(selector)
    public void Remove( 
       Predicate<DicomAttribute> selector
    )
    public:
    void Remove( 
       Predicate<DicomAttribute^>^ selector
    ) 

    Parameters

    selector
    The predicate to match the attributes to be removed
    Remarks

    If the appropriate data element exists in the DicomDataSet, it is removed.

    No error is generated if the requested item is not present in the DataSet.

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also