TypeDescriptor.CreateProperty Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new property descriptor for an existing property of a component.
Overloads
CreateProperty(Type, PropertyDescriptor, Attribute[]) |
Creates a new property descriptor from an existing property descriptor, using the specified existing PropertyDescriptor and attribute array. |
CreateProperty(Type, String, Type, Attribute[]) |
Creates and dynamically binds a property descriptor to a type, using the specified property name, type, and attribute array. |
CreateProperty(Type, PropertyDescriptor, Attribute[])
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
Creates a new property descriptor from an existing property descriptor, using the specified existing PropertyDescriptor and attribute array.
public:
static System::ComponentModel::PropertyDescriptor ^ CreateProperty(Type ^ componentType, System::ComponentModel::PropertyDescriptor ^ oldPropertyDescriptor, ... cli::array <Attribute ^> ^ attributes);
public static System.ComponentModel.PropertyDescriptor CreateProperty (Type componentType, System.ComponentModel.PropertyDescriptor oldPropertyDescriptor, params Attribute[] attributes);
static member CreateProperty : Type * System.ComponentModel.PropertyDescriptor * Attribute[] -> System.ComponentModel.PropertyDescriptor
Public Shared Function CreateProperty (componentType As Type, oldPropertyDescriptor As PropertyDescriptor, ParamArray attributes As Attribute()) As PropertyDescriptor
Parameters
- oldPropertyDescriptor
- PropertyDescriptor
The existing property descriptor.
- attributes
- Attribute[]
The new attributes for this property.
Returns
A new PropertyDescriptor that has the specified metadata attributes merged with the existing metadata attributes.
See also
Applies to
CreateProperty(Type, String, Type, Attribute[])
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
Creates and dynamically binds a property descriptor to a type, using the specified property name, type, and attribute array.
public:
static System::ComponentModel::PropertyDescriptor ^ CreateProperty(Type ^ componentType, System::String ^ name, Type ^ type, ... cli::array <Attribute ^> ^ attributes);
public static System.ComponentModel.PropertyDescriptor CreateProperty (Type componentType, string name, Type type, params Attribute[] attributes);
static member CreateProperty : Type * string * Type * Attribute[] -> System.ComponentModel.PropertyDescriptor
Public Shared Function CreateProperty (componentType As Type, name As String, type As Type, ParamArray attributes As Attribute()) As PropertyDescriptor
Parameters
- name
- String
The name of the property.
- attributes
- Attribute[]
The new attributes for this property.
Returns
A PropertyDescriptor that is bound to the specified type and that has the specified metadata attributes merged with the existing metadata attributes.