TypeConverter.SimplePropertyDescriptor Constructors

Definition

Initializes a new instance of the TypeConverter.SimplePropertyDescriptor class.

Overloads

TypeConverter.SimplePropertyDescriptor(Type, String, Type)

Initializes a new instance of the TypeConverter.SimplePropertyDescriptor class.

TypeConverter.SimplePropertyDescriptor(Type, String, Type, Attribute[])

Initializes a new instance of the TypeConverter.SimplePropertyDescriptor class.

TypeConverter.SimplePropertyDescriptor(Type, String, Type)

Source:
TypeConverter.cs
Source:
TypeConverter.cs
Source:
TypeConverter.cs

Initializes a new instance of the TypeConverter.SimplePropertyDescriptor class.

protected:
 SimplePropertyDescriptor(Type ^ componentType, System::String ^ name, Type ^ propertyType);
public:
 SimplePropertyDescriptor(Type ^ componentType, System::String ^ name, Type ^ propertyType);
protected SimplePropertyDescriptor (Type componentType, string name, Type propertyType);
public SimplePropertyDescriptor (Type componentType, string name, Type propertyType);
new System.ComponentModel.TypeConverter.SimplePropertyDescriptor : Type * string * Type -> System.ComponentModel.TypeConverter.SimplePropertyDescriptor
Protected Sub New (componentType As Type, name As String, propertyType As Type)
Public Sub New (componentType As Type, name As String, propertyType As Type)

Parameters

componentType
Type

A Type that represents the type of component to which this property descriptor binds.

name
String

The name of the property.

propertyType
Type

A Type that represents the data type for this property.

See also

Applies to

TypeConverter.SimplePropertyDescriptor(Type, String, Type, Attribute[])

Source:
TypeConverter.cs
Source:
TypeConverter.cs
Source:
TypeConverter.cs

Initializes a new instance of the TypeConverter.SimplePropertyDescriptor class.

protected:
 SimplePropertyDescriptor(Type ^ componentType, System::String ^ name, Type ^ propertyType, cli::array <Attribute ^> ^ attributes);
public:
 SimplePropertyDescriptor(Type ^ componentType, System::String ^ name, Type ^ propertyType, cli::array <Attribute ^> ^ attributes);
protected SimplePropertyDescriptor (Type componentType, string name, Type propertyType, Attribute[] attributes);
protected SimplePropertyDescriptor (Type componentType, string name, Type propertyType, Attribute[]? attributes);
public SimplePropertyDescriptor (Type componentType, string name, Type propertyType, Attribute[] attributes);
new System.ComponentModel.TypeConverter.SimplePropertyDescriptor : Type * string * Type * Attribute[] -> System.ComponentModel.TypeConverter.SimplePropertyDescriptor
Protected Sub New (componentType As Type, name As String, propertyType As Type, attributes As Attribute())
Public Sub New (componentType As Type, name As String, propertyType As Type, attributes As Attribute())

Parameters

componentType
Type

A Type that represents the type of component to which this property descriptor binds.

name
String

The name of the property.

propertyType
Type

A Type that represents the data type for this property.

attributes
Attribute[]

An Attribute array with the attributes to associate with the property.

See also

Applies to