SizeConverter.GetProperties 方法

定义

检索此类型的属性集。 默认情况下,类型没有任何要返回的属性。

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

参数

context
ITypeDescriptorContext

通过其可提供附加上下文的 TypeDescriptor

value
Object

要获取其属性的对象的值。

attributes
Attribute[]

描述属性的 Attribute 对象数组。

返回

应向此数据类型公开的属性集。 如果不应公开任何属性,则该方法可返回 null。 默认实现始终返回 null

注解

此方法的简单实现可以调用正确数据类型的 GetProperties 方法。

适用于