DicomObjects.NET Core 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 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: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also