PropertiesTab.GetProperties Method

Definition

Gets the properties of the specified component.

Overloads

GetProperties(Object, Attribute[])

Gets the properties of the specified component that match the specified attributes.

GetProperties(ITypeDescriptorContext, Object, Attribute[])

Gets the properties of the specified component that match the specified attributes and context.

GetProperties(Object, Attribute[])

Gets the properties of the specified component that match the specified attributes.

public:
 override System::ComponentModel::PropertyDescriptorCollection ^ GetProperties(System::Object ^ component, cli::array <Attribute ^> ^ attributes);
public override System.ComponentModel.PropertyDescriptorCollection GetProperties (object component, Attribute[] attributes);
public override System.ComponentModel.PropertyDescriptorCollection? GetProperties (object component, Attribute[]? attributes);
override this.GetProperties : obj * Attribute[] -> System.ComponentModel.PropertyDescriptorCollection
Public Overrides Function GetProperties (component As Object, attributes As Attribute()) As PropertyDescriptorCollection

Parameters

component
Object

The component to retrieve properties from.

attributes
Attribute[]

An array of type Attribute that indicates the attributes of the properties to retrieve.

Returns

A PropertyDescriptorCollection that contains the properties.

See also

Applies to

GetProperties(ITypeDescriptorContext, Object, Attribute[])

Gets the properties of the specified component that match the specified attributes and context.

public:
 override System::ComponentModel::PropertyDescriptorCollection ^ GetProperties(System::ComponentModel::ITypeDescriptorContext ^ context, System::Object ^ component, cli::array <Attribute ^> ^ attributes);
public override System.ComponentModel.PropertyDescriptorCollection GetProperties (System.ComponentModel.ITypeDescriptorContext context, object component, Attribute[] attributes);
public override System.ComponentModel.PropertyDescriptorCollection? GetProperties (System.ComponentModel.ITypeDescriptorContext? context, object component, Attribute[]? attributes);
override this.GetProperties : System.ComponentModel.ITypeDescriptorContext * obj * Attribute[] -> System.ComponentModel.PropertyDescriptorCollection
Public Overrides Function GetProperties (context As ITypeDescriptorContext, component As Object, attributes As Attribute()) As PropertyDescriptorCollection

Parameters

context
ITypeDescriptorContext

An ITypeDescriptorContext that indicates the context to retrieve properties from.

component
Object

The component to retrieve properties from.

attributes
Attribute[]

An array of type Attribute that indicates the attributes of the properties to retrieve.

Returns

A PropertyDescriptorCollection that contains the properties matching the specified context and attributes.

See also

Applies to