DesignSurface.CreateInstance(Type) Method

Definition

Creates an instance of the given type.

protected public:
 virtual System::Object ^ CreateInstance(Type ^ type);
protected internal virtual object CreateInstance (Type type);
protected internal virtual object? CreateInstance (Type type);
abstract member CreateInstance : Type -> obj
override this.CreateInstance : Type -> obj
Protected Friend Overridable Function CreateInstance (type As Type) As Object

Parameters

type
Type

The type to create.

Returns

The newly created object.

Exceptions

type is null.

The IDesignerHost attached to the DesignSurface has been disposed.

Remarks

If type is an IComponent, CreateInstance searches for a constructor of type IContainer first, followed by an empty constructor.

Applies to