DicomObjects.NET.V8
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 Action(Of SequencePath) _
    ) 
    'Usage
     
    Dim instance As DicomDataSet
    Dim action As Action(Of SequencePath)
     
    instance.ForEachAttribute(action)
    public void ForEachAttribute( 
       Action<SequencePath> action
    )
    public:
    void ForEachAttribute( 
       Action<SequencePath^>^ action
    ) 

    Parameters

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

    Target Platforms: .NET CLR 4.0 or higher

    See Also