DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomImage Class / Remove Method / Remove(Keyword) Method
The attribute to be removed, specified as a Keyword






In This Topic
    Remove(Keyword) Method
    In This Topic
    Removes an attribute from the underlying DataSet
    Syntax
    'Declaration
     
    
    Public Overloads Sub Remove( _
       ByVal keyword As Keyword _
    ) 
    'Usage
     
    
    Dim instance As DicomImage
    Dim keyword As Keyword
     
    instance.Remove(keyword)
    public void Remove( 
       Keyword keyword
    )
    public procedure Remove( 
        keyword: Keyword
    ); 
    public function Remove( 
       keyword : Keyword
    );
    public: void Remove( 
       Keyword keyword
    ) 
    public:
    void Remove( 
       Keyword keyword
    ) 

    Parameters

    keyword
    The attribute to be removed, specified as a Keyword
    Remarks

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

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

    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also