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

String, the Instance UID of the DicomDataSet




In This Topic
    Item Property (DicomDataSetCollection)
    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 Shadows ReadOnly Default Property Item( _
       ByVal InstanceUID As String _
    ) As DicomDataSet
    'Usage
     
    Dim instance As DicomDataSetCollection
    Dim InstanceUID As String
    Dim value As DicomDataSet
     
    value = instance.Item(InstanceUID)
    public new DicomDataSet this[ 
       string InstanceUID
    ]; {get;}
    public:
    new property DicomDataSet^ default [String^] {
       DicomDataSet^ get(String^ InstanceUID);
    }

    Parameters

    InstanceUID

    String, the Instance UID of the DicomDataSet

    Remarks
    This is the default indexer. Individual DicomDataSet item can be accessed via DicomDataSetCollection[InstanceUID].
    Requirements

    Target Platforms: .NET CLR 3.5 or higher

    See Also