DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomDataSetCollection Class / InsertItem Method
The location where the insert is occuring
The object being inserted






In This Topic
    InsertItem Method (DicomDataSetCollection)
    In This Topic
    This is an override of the method in the base collection, and would not normally be used by DicomObjects developers
    Syntax
    'Declaration
     
    
    Protected Overrides Sub InsertItem( _
       ByVal index As System.Integer, _
       ByVal item As DicomDataSet _
    ) 
    'Usage
     
    
    Dim instance As DicomDataSetCollection
    Dim index As System.Integer
    Dim item As DicomDataSet
     
    instance.InsertItem(index, item)
    protected override void InsertItem( 
       System.int index,
       DicomDataSet item
    )
    protected procedure InsertItem( 
        index: System.Integer;
        item: DicomDataSet
    ); override; 
    protected override function InsertItem( 
       index : System.int,
       item : DicomDataSet
    );
    protected: void InsertItem( 
       System.int index,
       DicomDataSet* item
    ) override 
    protected:
    void InsertItem( 
       System.int index,
       DicomDataSet^ item
    ) override 

    Parameters

    index
    The location where the insert is occuring
    item
    The object being inserted
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also