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 ref class ComponentEventArgs : 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.
public: // This example method creates a ComponentEventArgs using the specified argument. // Typically, this type of event args is created by a design mode subsystem. ComponentEventArgs^ CreateComponentEventArgs( IComponent^ component ) { // The component that is related to the event: args.Component return gcnew ComponentEventArgs( component ); }
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.


