ComponentEventArgs Class
Provides data for the ComponentAdded, ComponentAdding, ComponentRemoved, and ComponentRemoving events.
Assembly: System (in System.dll)
<ComVisibleAttribute(True)> <HostProtectionAttribute(SecurityAction.LinkDemand, SharedState := True)> <PermissionSetAttribute(SecurityAction.LinkDemand, Name := "FullTrust")> <PermissionSetAttribute(SecurityAction.InheritanceDemand, Name := "FullTrust")> Public Class ComponentEventArgs Inherits EventArgs
| Name | Description | |
|---|---|---|
![]() | ComponentEventArgs(IComponent) | Initializes a new instance of the ComponentEventArgs class. |
| Name | Description | |
|---|---|---|
![]() | Component | Gets the component associated with the event. |
| 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.) |
ComponentEventArgs is the root event arguments class for all component management events. This type of event occurs when you add or remove components using a designer.
The following example demonstrates creating a ComponentEventArgs.
' This example method creates a ComponentEventArgs using the specified argument. ' Typically, this type of event args is created by a design mode subsystem. Public Function CreateComponentEventArgs(ByVal component As IComponent) As ComponentEventArgs Dim args As New ComponentEventArgs(component) ' The component that is related to the event: args.Component Return args End Function
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.


