PropertyTab.GetProperties 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取指定组件的属性。
重载
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
要从中检索属性的组件。
返回
包含这些属性的 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
要从中检索属性的组件。
返回
包含与指定的上下文和特性相匹配的属性的 PropertyDescriptorCollection。