DicomObjects.NET Core Documentation
DicomObjects Namespace / DicomAttribute Class / Item Property
The 1-based index of the component to return



In This Topic
    Item Property (DicomAttribute)
    In This Topic
    The default indexer.
    Syntax
    'Declaration
     
    
    Public ReadOnly Default Property Item( _
       ByVal Index As Integer _
    ) As Object
    'Usage
     
    
    Dim instance As DicomAttribute
    Dim Index As Integer
    Dim value As Object
     
    value = instance.Item(Index)
    public object this[ 
       int Index
    ]; {get;}
    public:
    property Object^ default [int] {
       Object^ get(int Index);
    }

    Parameters

    Index
    The 1-based index of the component to return
    Remarks

    If Item is 0, then the overall value (equivalent to the Value) is returned

    If the VM is greater than 1 then individual items may be accessed by using the 1-based index.

    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