DicomObjects.NET.V8
DicomObjects Namespace / DicomDataSet Class / FindAttribute Method
The sequence in a functional group that this attribute is part of
The item to be found
The frame number. This is only relevant if the item is found within the PerFrame functional groups sequence



In This Topic
    FindAttribute Method
    In This Topic
    Locate an attribute within either a top level dataset, or within one of the functional group macros
    Syntax
    'Declaration
     
    Public Function FindAttribute( _
       ByVal Macro As Keyword, _
       ByVal Item As Keyword, _
       ByVal Frame As Integer _
    ) As DicomAttribute
    'Usage
     
    Dim instance As DicomDataSet
    Dim Macro As Keyword
    Dim Item As Keyword
    Dim Frame As Integer
    Dim value As DicomAttribute
     
    value = instance.FindAttribute(Macro, Item, Frame)
    public DicomAttribute FindAttribute( 
       Keyword Macro,
       Keyword Item,
       int Frame
    )
    public:
    DicomAttribute^ FindAttribute( 
       Keyword Macro,
       Keyword Item,
       int Frame
    ) 

    Parameters

    Macro
    The sequence in a functional group that this attribute is part of
    Item
    The item to be found
    Frame
    The frame number. This is only relevant if the item is found within the PerFrame functional groups sequence

    Return Value

    The requested DicomAttribute
    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also