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