ToolboxComponentsCreatingEventArgs Class
Provides data for the ComponentsCreating event that occurs when components are added to the toolbox.
Assembly: System.Drawing (in System.Drawing.dll)
| Name | Description | |
|---|---|---|
![]() | ToolboxComponentsCreatingEventArgs(IDesignerHost^) | Initializes a new instance of the ToolboxComponentsCreatingEventArgs class. |
| Name | Description | |
|---|---|---|
![]() | DesignerHost | Gets or sets an instance of the IDesignerHost that made the request to create toolbox components. |
| 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 ComponentsCreating event is raised when components are about to be added to the toolbox. ToolboxComponentsCreatingEventArgs provides data indicating the designer that has requested that the components be added.
The following example method returns a ToolboxComponentsCreatingEventArgs that indicates the designer host that is about to receive a new component or set of components:
ToolboxComponentsCreatingEventArgs^ CreateToolboxComponentsCreatingEventArgs( System::ComponentModel::Design::IDesignerHost^ host )
{
ToolboxComponentsCreatingEventArgs^ e = gcnew ToolboxComponentsCreatingEventArgs( host );
// The designer host of the document receiving the components e.DesignerHost
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.


