ComponentsCreated Event
See Also 
SourceCode.Framework.Design Namespace > ToolboxItemWizard Class : ComponentsCreated Event



Glossary Item Box

Syntax

Visual Basic (Declaration)  
Public Event ComponentsCreated As ToolboxComponentsCreatedEventHandler
Visual Basic (Usage) Copy Code
Dim instance As ToolboxItemWizard
Dim handler As ToolboxComponentsCreatedEventHandler
 
AddHandler instance.ComponentsCreated, handler
C#  
public event ToolboxComponentsCreatedEventHandler ComponentsCreated
C++/CLI  
public:
event ToolboxComponentsCreatedEventHandler^ ComponentsCreated

Event Data

The event handler receives an argument of type ToolboxComponentsCreatedEventArgs containing data related to this event. The following ToolboxComponentsCreatedEventArgs properties provide information specific to this event.

Property Description
Components Gets or sets an array containing the components to add to the toolbox.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also