ComponentRenameEventArgs Class
Provides data for the ComponentRename event.
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 ComponentRenameEventArgs : EventArgs
| Name | Description | |
|---|---|---|
![]() | ComponentRenameEventArgs(Object^, String^, String^) | Initializes a new instance of the ComponentRenameEventArgs class. |
| 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.) |
A ComponentRenameEventArgs provides data about a ComponentRename event.
A ComponentRenameEventArgs object provides the following information:
The following example demonstrates creating a ComponentRenameEventArgs.
public: // This example method creates a ComponentRenameEventArgs using the specified arguments. // Typically, this type of event args is created by a design mode subsystem. ComponentRenameEventArgs^ CreateComponentRenameEventArgs( Object^ component, String^ oldName, String^ newName ) { // The component that was renamed: args.Component // The previous name of the component: args.OldName // The new name of the component: args.NewName return gcnew ComponentRenameEventArgs( component, oldName, newName ); }
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.


