DicomObjects.NET.V8
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
    Note: C# syntax for the "Item" property is wrongly represented in a VB.NET syntax. This is a bug in the help file generator, and will be corrected in a later version of our help file.
    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 Groupint 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: .NET CLR 4.0 or higher

    See Also