TypeDescriptor::GetProperties Method (Object^, Boolean)
.NET Framework (current version)
Returns the collection of properties for a specified component using the default type descriptor.
Assembly: System (in System.dll)
public: static PropertyDescriptorCollection^ GetProperties( Object^ component, bool noCustomTypeDesc )
Parameters
- component
-
Type:
System::Object^
A component to get the properties for.
- noCustomTypeDesc
-
Type:
System::Boolean
true to not consider custom type description information; otherwise, false.
Return Value
Type: System.ComponentModel::PropertyDescriptorCollection^A PropertyDescriptorCollection with the properties for a specified component.
| Exception | Condition |
|---|---|
| NotSupportedException | component is a cross-process remoted object. |
The properties for the component parameter can differ from the properties of a class, because the site can add or remove properties if the component parameter is sited.
If component is null, an empty collection is returned.
The order of the returned collection is not guaranteed to be identical between calls, so always order it before use.
.NET Framework
Available since 1.1
Available since 1.1
Show: