ToolboxComponentsCreatedEventArgs Class
Provides data for the ComponentsCreated event that occurs when components are added to the toolbox.
Assembly: System.Drawing (in System.Drawing.dll)
| Name | Description | |
|---|---|---|
![]() | ToolboxComponentsCreatedEventArgs(array<IComponent^>^) | Initializes a new instance of the ToolboxComponentsCreatedEventArgs class. |
| Name | Description | |
|---|---|---|
![]() | Components | Gets or sets an array containing the components to add to the toolbox. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
The ComponentsCreated event is raised when components are added to the toolbox. ToolboxComponentsCreatedEventArgs provides data indicating which component or components are being added.
The following example method returns a ToolboxComponentsCreatedEventArgs that indicates the components that have been created:
ToolboxComponentsCreatedEventArgs^ CreateToolboxComponentsCreatedEventArgs( array<System::ComponentModel::IComponent^>^components ) { ToolboxComponentsCreatedEventArgs^ e = gcnew ToolboxComponentsCreatedEventArgs( components ); // The components that were just created e.Components return e; }
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


