LinkArea::LinkAreaConverter::GetProperties Method (ITypeDescriptorContext^, Object^, array<Attribute^>^)
.NET Framework (current version)
Retrieves the set of properties for this type.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: virtual PropertyDescriptorCollection^ GetProperties( ITypeDescriptorContext^ context, Object^ value, array<Attribute^>^ attributes ) override
Parameters
- context
-
Type:
System.ComponentModel::ITypeDescriptorContext^
A type descriptor through which additional context may be provided.
- value
-
Type:
System::Object^
The value of the object to get the properties for.
- attributes
-
Type:
array<System::Attribute^>^
The attributes of the object to get the properties for.
Return Value
Type: System.ComponentModel::PropertyDescriptorCollection^The set of properties that should be exposed for this data type. If no properties should be exposed, this might return null. The default implementation always returns null.
By default, a type does not return any properties. An easy implementation of this method can just call GetProperties for the correct data type.
.NET Framework
Available since 1.1
Available since 1.1
Show: