In This Topic
Syntax
'Declaration
<__DynamicallyInvokableAttribute()>
Public Overloads Property Item( _
ByVal As System.Integer _
) As DicomImage
'Usage
Dim instance As DicomImageCollection
Dim index As System.Integer
Dim value As DicomImage
instance.Item(index) = value
value = instance.Item(index)
[__DynamicallyInvokable()]
public DicomImage Item(
System.int
) {get; set;}
public read-write property Item(
: System.Integer
): DicomImage;
__DynamicallyInvokableAttribute()
public function get,set Item(
: System.int
) : DicomImage
[__DynamicallyInvokable()]
public: __property DicomImage* get_Item(
System.int
);
public: __property void set_Item(
System.int ,
DicomImage* value
);
[__DynamicallyInvokable()]
public:
property DicomImage^ Item {
DicomImage^ get(System.int );
void set (System.int , DicomImage^ value);
}
Parameters
- index
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also