DicomObjects.NET.V8
DicomObjects Namespace / DicomImageCollection Class / Item Property



In This Topic
    Item Property (DicomImageCollection)
    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.
    The default indexer of collection object
    Syntax
    'Declaration
     
    Public Shadows ReadOnly Default Property Item( _
       ByVal InstanceUID As String _
    ) As DicomImage
    'Usage
     
    Dim instance As DicomImageCollection
    Dim InstanceUID As String
    Dim value As DicomImage
     
    value = instance.Item(InstanceUID)
    public new DicomImage this[ 
       string InstanceUID
    ]; {get;}
    public:
    new property DicomImage^ default [String^] {
       DicomImage^ get(String^ InstanceUID);
    }

    Parameters

    InstanceUID
    Requirements

    Target Platforms: .NET CLR 3.5 or higher

    See Also