DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomDataSet Class / ForEachAttribute Method
Delegate, which takes as a parameter, the path to each attribute.






In This Topic
    ForEachAttribute Method
    In This Topic
    Recursively perform an action on every attribute within the dataset
    Syntax
    'Declaration
     
    
    Public Sub ForEachAttribute( _
       ByVal action As System.Action(Of SequencePath) _
    ) 
    'Usage
     
    
    Dim instance As DicomDataSet
    Dim action As System.Action(Of SequencePath)
     
    instance.ForEachAttribute(action)
    public void ForEachAttribute( 
       System.Action<SequencePath> action
    )
    public procedure ForEachAttribute( 
        action: System.Action
    ); 
    public function ForEachAttribute( 
       action : System.Action
    );
    public: void ForEachAttribute( 
       System.Action<SequencePath*>* action
    ) 
    public:
    void ForEachAttribute( 
       System.Action<SequencePath^>^ action
    ) 

    Parameters

    action
    Delegate, which takes as a parameter, the path to each attribute.
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also