SetItem Method (DicomImageCollection)
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 SetItem( _
ByVal As System.Integer, _
ByVal As DicomImage _
)
'Usage
Dim instance As DicomImageCollection
Dim index As System.Integer
Dim item As DicomImage
instance.SetItem(index, item)
protected override void SetItem(
System.int ,
DicomImage
)
protected procedure SetItem(
: System.Integer;
: DicomImage
); override;
protected override function SetItem(
: System.int,
: DicomImage
);
protected: void SetItem(
System.int ,
DicomImage*
) override
protected:
void SetItem(
System.int ,
DicomImage^
) override
Parameters
- index
- Index object is being placed
- item
- New Value
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also