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 As System.Integer, _
ByVal 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 ,
DicomDataSet
)
protected procedure InsertItem(
: System.Integer;
: DicomDataSet
); override;
protected override function InsertItem(
: System.int,
: DicomDataSet
);
protected: void InsertItem(
System.int ,
DicomDataSet*
) override
protected:
void InsertItem(
System.int ,
DicomDataSet^
) 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