ArrayConverter::GetProperties Method (ITypeDescriptorContext^, Object^, array<Attribute^>^)
Gets a collection of properties for the type of array specified by the value parameter.
Assembly: System (in System.dll)
public: virtual PropertyDescriptorCollection^ GetProperties( ITypeDescriptorContext^ context, Object^ value, array<Attribute^>^ attributes ) override
Parameters
- context
-
Type:
System.ComponentModel::ITypeDescriptorContext^
An ITypeDescriptorContext that provides a format context.
- value
-
Type:
System::Object^
An Object that specifies the type of array to get the properties for.
- attributes
-
Type:
array<System::Attribute^>^
An array of type Attribute that will be used as a filter.
Return Value
Type: System.ComponentModel::PropertyDescriptorCollection^A PropertyDescriptorCollection with the properties that are exposed for an array, or null if there are no properties.
The context parameter can be used to extract additional information about the environment this converter is being invoked from. This can be null, so always check. Also, properties on the context object can return null.
The attributes array will be used to filter the array. The attributes parameter can specify a mix of Type and Attribute objects. Filtering is defined by the following rules:
A Type will be treated as a wildcard; it will match any property that has the Type in its set of attributes.
If a property does not have an Attribute of the same class, the property will not be included in the returned array.
If the attribute is an instance of Attribute, the property must be an exact match or it will not be included in the returned array.
If an Attribute instance is specified and it is the default property, it will be included in the returned array even if there is no instance of the Attribute in the property.
Available since 1.1