DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomImage Class / Remove Method / Remove(Int32,Int32) Method

The group index of a data element

The element index of a data element







In This Topic
    Remove(Int32,Int32) Method
    In This Topic
    Removes an attribute from the DataSet
    Syntax
    'Declaration
     
    
    Public Overloads Sub Remove( _
       ByVal group As System.Integer, _
       ByVal element As System.Integer _
    ) 
    'Usage
     
    
    Dim instance As DicomImage
    Dim group As System.Integer
    Dim element As System.Integer
     
    instance.Remove(group, element)
    public void Remove( 
       System.int group,
       System.int element
    )
    public procedure Remove( 
        group: System.Integer;
        element: System.Integer
    ); 
    public function Remove( 
       group : System.int,
       element : System.int
    );
    public: void Remove( 
       System.int group,
       System.int element
    ) 
    public:
    void Remove( 
       System.int group,
       System.int element
    ) 

    Parameters

    group

    The group index of a data element

    element

    The element index of a data element

    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