SizeConverter.CreateInstance(ITypeDescriptorContext, IDictionary) Method

Definition

Creates an object of this type by using a specified set of property values for the object. This is useful for creating non-changeable objects that have changeable properties.

public:
 override System::Object ^ CreateInstance(System::ComponentModel::ITypeDescriptorContext ^ context, System::Collections::IDictionary ^ propertyValues);
public override object CreateInstance (System.ComponentModel.ITypeDescriptorContext context, System.Collections.IDictionary propertyValues);
public override object CreateInstance (System.ComponentModel.ITypeDescriptorContext? context, System.Collections.IDictionary propertyValues);
override this.CreateInstance : System.ComponentModel.ITypeDescriptorContext * System.Collections.IDictionary -> obj
Public Overrides Function CreateInstance (context As ITypeDescriptorContext, propertyValues As IDictionary) As Object

Parameters

context
ITypeDescriptorContext

A TypeDescriptor through which additional context can be provided.

propertyValues
IDictionary

A dictionary of new property values. The dictionary contains a series of name-value pairs, one for each property returned from the GetProperties(ITypeDescriptorContext, Object, Attribute[]) method.

Returns

The newly created object, or null if the object could not be created. The default implementation returns null.

Applies to