ToolboxItem.CreateComponents 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 the components that the toolbox item is configured to create.
Overloads
CreateComponents(IDesignerHost, IDictionary) |
Creates the components that the toolbox item is configured to create, using the specified designer host and default values. |
CreateComponents() |
Creates the components that the toolbox item is configured to create. |
CreateComponents(IDesignerHost) |
Creates the components that the toolbox item is configured to create, using the specified designer host. |
CreateComponents(IDesignerHost, IDictionary)
Creates the components that the toolbox item is configured to create, using the specified designer host and default values.
public:
cli::array <System::ComponentModel::IComponent ^> ^ CreateComponents(System::ComponentModel::Design::IDesignerHost ^ host, System::Collections::IDictionary ^ defaultValues);
public System.ComponentModel.IComponent[] CreateComponents (System.ComponentModel.Design.IDesignerHost host, System.Collections.IDictionary defaultValues);
public System.ComponentModel.IComponent[]? CreateComponents (System.ComponentModel.Design.IDesignerHost? host, System.Collections.IDictionary? defaultValues);
member this.CreateComponents : System.ComponentModel.Design.IDesignerHost * System.Collections.IDictionary -> System.ComponentModel.IComponent[]
Public Function CreateComponents (host As IDesignerHost, defaultValues As IDictionary) As IComponent()
Parameters
- host
- IDesignerHost
The IDesignerHost to use when creating the components.
- defaultValues
- IDictionary
A dictionary of property name/value pairs of default values with which to initialize the component.
Returns
An array of created IComponent objects.
Remarks
The CreateComponents method calls the CreateComponentsCore method to retrieve an array of type IComponent containing the components to create.
Applies to
CreateComponents()
Creates the components that the toolbox item is configured to create.
public:
cli::array <System::ComponentModel::IComponent ^> ^ CreateComponents();
public System.ComponentModel.IComponent[] CreateComponents ();
public System.ComponentModel.IComponent[]? CreateComponents ();
member this.CreateComponents : unit -> System.ComponentModel.IComponent[]
Public Function CreateComponents () As IComponent()
Returns
An array of created IComponent objects.
Remarks
The CreateComponents method calls the CreateComponentsCore method to retrieve an array of type IComponent containing the components to create.
Applies to
CreateComponents(IDesignerHost)
Creates the components that the toolbox item is configured to create, using the specified designer host.
public:
cli::array <System::ComponentModel::IComponent ^> ^ CreateComponents(System::ComponentModel::Design::IDesignerHost ^ host);
public System.ComponentModel.IComponent[] CreateComponents (System.ComponentModel.Design.IDesignerHost host);
public System.ComponentModel.IComponent[]? CreateComponents (System.ComponentModel.Design.IDesignerHost? host);
member this.CreateComponents : System.ComponentModel.Design.IDesignerHost -> System.ComponentModel.IComponent[]
Public Function CreateComponents (host As IDesignerHost) As IComponent()
Parameters
- host
- IDesignerHost
The IDesignerHost to use when creating the components.
Returns
An array of created IComponent objects.
Remarks
The CreateComponents method calls the CreateComponentsCore method to retrieve an array of type IComponent containing the components to create.