TypeDescriptor.GetDefaultProperty Метод

Определение

Возвращает свойство по умолчанию для компонента.

Перегрузки

GetDefaultProperty(Type)

Возвращает свойство по умолчанию для указанного типа компонента.

GetDefaultProperty(Object, Boolean)

Возвращает свойство по умолчанию для указанного компонента с настраиваемым дескриптором типа.

GetDefaultProperty(Object)

Возвращает свойство по умолчанию для указанного компонента.

GetDefaultProperty(Type)

Исходный код:
TypeDescriptor.cs
Исходный код:
TypeDescriptor.cs
Исходный код:
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)

Исходный код:
TypeDescriptor.cs
Исходный код:
TypeDescriptor.cs
Исходный код:
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)

Исходный код:
TypeDescriptor.cs
Исходный код:
TypeDescriptor.cs
Исходный код:
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.

См. также раздел

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