TypeDescriptor.GetDefaultProperty 方法

定义

返回组件的默认属性。

重载

GetDefaultProperty(Type)

返回指定类型组件的默认属性。

GetDefaultProperty(Object, Boolean)

使用自定义类型描述符返回指定组件的默认属性。

GetDefaultProperty(Object)

返回指定组件的默认属性。

GetDefaultProperty(Type)

Source:
TypeDescriptor.cs
Source:
TypeDescriptor.cs
Source:
TypeDescriptor.cs

返回指定类型组件的默认属性。

public:
 static System::ComponentModel::PropertyDescriptor ^ GetDefaultProperty(Type ^ componentType);
public static System.ComponentModel.PropertyDescriptor GetDefaultProperty (Type componentType);
public static System.ComponentModel.PropertyDescriptor? GetDefaultProperty (Type componentType);
static member GetDefaultProperty : Type -> System.ComponentModel.PropertyDescriptor
Public Shared Function GetDefaultProperty (componentType As Type) As PropertyDescriptor

参数

componentType
Type

表示要获取其属性的类的 Type

返回

具有默认属性的 PropertyDescriptor;如果没有属性,则为 null

注解

仅当没有 对象的实例时,才调用此方法的此版本。

componentType如果 参数为 null,则此方法返回 null

另请参阅

适用于

GetDefaultProperty(Object, Boolean)

Source:
TypeDescriptor.cs
Source:
TypeDescriptor.cs
Source:
TypeDescriptor.cs

使用自定义类型描述符返回指定组件的默认属性。

public:
 static System::ComponentModel::PropertyDescriptor ^ GetDefaultProperty(System::Object ^ component, bool noCustomTypeDesc);
public static System.ComponentModel.PropertyDescriptor GetDefaultProperty (object component, bool noCustomTypeDesc);
public static System.ComponentModel.PropertyDescriptor? GetDefaultProperty (object component, bool noCustomTypeDesc);
static member GetDefaultProperty : obj * bool -> System.ComponentModel.PropertyDescriptor
Public Shared Function GetDefaultProperty (component As Object, noCustomTypeDesc As Boolean) As PropertyDescriptor

参数

component
Object

要获取其默认属性的组件。

noCustomTypeDesc
Boolean

若不考虑自定义类型描述信息时,为 true;否则为 false

返回

具有默认属性的 PropertyDescriptor;如果没有属性,则为 null

例外

component 是一个跨进程进行远程处理的对象。

注解

component如果 参数为 null,则此方法返回 null

另请参阅

适用于

GetDefaultProperty(Object)

Source:
TypeDescriptor.cs
Source:
TypeDescriptor.cs
Source:
TypeDescriptor.cs

返回指定组件的默认属性。

public:
 static System::ComponentModel::PropertyDescriptor ^ GetDefaultProperty(System::Object ^ component);
public static System.ComponentModel.PropertyDescriptor GetDefaultProperty (object component);
public static System.ComponentModel.PropertyDescriptor? GetDefaultProperty (object component);
static member GetDefaultProperty : obj -> System.ComponentModel.PropertyDescriptor
Public Shared Function GetDefaultProperty (component As Object) As PropertyDescriptor

参数

component
Object

要获取其默认属性的组件。

返回

具有默认属性的 PropertyDescriptor;如果没有属性,则为 null

例外

component 是一个跨进程进行远程处理的对象。

注解

component如果 参数为 null,则此方法返回 null

另请参阅

适用于