DicomObjects.NET.V8
DicomObjects Namespace / DicomDataSet 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 Integer, _
       ByVal Element As Integer _
    ) 
    'Usage
     
    Dim instance As DicomDataSet
    Dim Group As Integer
    Dim Element As Integer
     
    instance.Remove(Group, Element)
    public void Remove( 
       int Group,
       int Element
    )
    public:
    void Remove( 
       int Group,
       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 DicomDataSet, it is removed.

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

    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also