NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ToolboxItem.CreateComponentsCore

Creates objects from each Type contained in this ToolboxItem, and adds them to the designer. You may override this method to alter the way components are created.

[Visual Basic]
Overridable Protected Function CreateComponentsCore( _
   ByVal host As IDesignerHost _
) As IComponent ()
[C#]
protected virtual IComponent[] CreateComponentsCore(
   IDesignerHost host
);
[C++]
protected: virtual IComponent* CreateComponentsCore(
   IDesignerHost* host
) [];
[JScript]
protected function CreateComponentsCore(
   host : IDesignerHost
) : IComponent[];

Parameters

host
The IDesignerHost to use to create the components.

Return Value

An array of created IComponent objects.

See Also

ToolboxItem Class | ToolboxItem Members | System.Drawing.Design Namespace