DicomObjects.NET.V8
DicomObjects Namespace / DicomDataSet 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 Overridable ReadOnly Property Item( _
       ByVal group As Integer, _
       ByVal element As Integer _
    ) As DicomAttribute
    'Usage
     
    Dim instance As DicomDataSet
    Dim group As Integer
    Dim element As Integer
    Dim value As DicomAttribute
     
    value = instance.Item(group, element)
    public virtual DicomAttribute Item( 
       int group,
       int element
    ) {get;}
    public:
    virtual 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
    There are several possible indexers for a dataset, allowing both specific and sequential access.
    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also