PropertyTab.GetProperties Метод

Определение

Получает свойства указанного компонента.

Перегрузки

GetProperties(Object)

Получает свойства указанного компонента.

GetProperties(Object, Attribute[])

Получает свойства заданного компонента, которые соответствуют заданным атрибутам.

GetProperties(ITypeDescriptorContext, Object, Attribute[])

Получает свойства заданного компонента, которые соответствуют заданным атрибутам и контексту.

GetProperties(Object)

Получает свойства указанного компонента.

public:
 virtual System::ComponentModel::PropertyDescriptorCollection ^ GetProperties(System::Object ^ component);
public virtual System.ComponentModel.PropertyDescriptorCollection GetProperties (object component);
public virtual System.ComponentModel.PropertyDescriptorCollection? GetProperties (object component);
abstract member GetProperties : obj -> System.ComponentModel.PropertyDescriptorCollection
override this.GetProperties : obj -> System.ComponentModel.PropertyDescriptorCollection
Public Overridable Function GetProperties (component As Object) As PropertyDescriptorCollection

Параметры

component
Object

Компонент, свойства которого извлекаются.

Возвращаемое значение

Коллекция PropertyDescriptorCollection, содержащая свойства данного компонента.

Применяется к

GetProperties(Object, Attribute[])

Получает свойства заданного компонента, которые соответствуют заданным атрибутам.

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

Параметры

component
Object

Компонент, из которого извлекаются свойства.

attributes
Attribute[]

Массив типа Attribute, который указывает на извлекаемые атрибуты свойств.

Возвращаемое значение

Коллекция PropertyDescriptorCollection, содержащая свойства.

Применяется к

GetProperties(ITypeDescriptorContext, Object, Attribute[])

Получает свойства заданного компонента, которые соответствуют заданным атрибутам и контексту.

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

Параметры

context
ITypeDescriptorContext

Тип ITypeDescriptorContext, указывающий контекст для извлечения свойств.

component
Object

Компонент, из которого извлекаются свойства.

attributes
Attribute[]

Массив типа Attribute, который указывает на извлекаемые атрибуты свойств.

Возвращаемое значение

Объект PropertyDescriptorCollection, который содержит свойства, соответствующие заданному контексту и атрибутам.

Применяется к