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

适用于