DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomDataSetCollection Class / Item Property / Item(Int32) Property






In This Topic
    Item(Int32) Property
    In This Topic
    Syntax
    'Declaration
     
    
    <__DynamicallyInvokableAttribute()>
    Public Overloads Property Item( _
       ByVal index As System.Integer _
    ) As DicomDataSet
    'Usage
     
    
    Dim instance As DicomDataSetCollection
    Dim index As System.Integer
    Dim value As DicomDataSet
     
    instance.Item(index) = value
     
    value = instance.Item(index)
    [__DynamicallyInvokable()]
    public DicomDataSet Item( 
       System.int index
    ) {get; set;}
    public read-write property Item( 
        index: System.Integer
    ): DicomDataSet; 
    __DynamicallyInvokableAttribute()
    public function get,set Item( 
       index : System.int
    ) : DicomDataSet
    [__DynamicallyInvokable()]
    public: __property DicomDataSet* get_Item( 
       System.int index
    );
    public: __property void set_Item( 
       System.int index,
       DicomDataSet* value
    );
    [__DynamicallyInvokable()]
    public:
    property DicomDataSet^ Item {
       DicomDataSet^ get(System.int index);
       void set (System.int index, DicomDataSet^ value);
    }

    Parameters

    index
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also