DicomObjects.NetStandard Documentation
DicomObjects Namespace / DicomImage Class / Item Property / Item(Int32,Int32) Property

The group index of a data element.

The element index of a data element.




In This Topic
    Item(Int32,Int32) Property
    In This Topic
    Provides access to all attributes of the image
    Syntax
    'Declaration
     
    
    Public Overloads ReadOnly Property Item( _
       ByVal Group As Integer, _
       ByVal Element As Integer _
    ) As DicomAttribute
    'Usage
     
    
    Dim instance As DicomImage
    Dim Group As Integer
    Dim Element As Integer
    Dim value As DicomAttribute
     
    value = instance.Item(Group, Element)
    public DicomAttribute Item( 
       int Group,
       int Element
    ) {get;}
    public:
    property DicomAttribute^ Item {
       DicomAttribute^ get(int Group, int Element);
    }

    Parameters

    Group

    The group index of a data element.

    Element

    The element index of a data element.

    Remarks
    This is the default indexer to provide access to all attributes of the image. Attribute element can be accessed by "Image[Group, Element]".
    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