EventsTab.GetProperties Метод

Определение

Получает все свойства вкладки событий.

Перегрузки

GetProperties(Object, Attribute[])

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

GetProperties(ITypeDescriptorContext, Object, Attribute[])

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

GetProperties(Object, Attribute[])

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

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

Параметры

component
Object

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

attributes
Attribute[]

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

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

PropertyDescriptorCollection

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

Комментарии

Свойства вкладки событий определяются из свойств события, возвращаемых службой событий компонента.

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

GetProperties(ITypeDescriptorContext, Object, Attribute[])

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

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

Параметры

context
ITypeDescriptorContext

Контекст ITypeDescriptorContext, используемый для получения сведений о контексте.

component
Object

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

attributes
Attribute[]

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

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

PropertyDescriptorCollection

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

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