FontConverter::GetProperties Method (ITypeDescriptorContext^, Object^, array<Attribute^>^)
.NET Framework (current version)
Retrieves the set of properties for this type. By default, a type does not have any properties to return.
Assembly: System.Drawing (in System.Drawing.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 can be provided.
- value
-
Type:
System::Object^
The value of the object to get the properties for.
- attributes
-
Type:
array<System::Attribute^>^
An array of Attribute objects that describe the properties.
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 may return null. The default implementation always returns null.
An easy implementation of this method can call the GetProperties method for the correct data type.
.NET Framework
Available since 1.1
Available since 1.1
Show: