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 Class ComponentRenameEventArgs Inherits 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.
' This example method creates a ComponentRenameEventArgs using the specified arguments. ' Typically, this type of event args is created by a design mode subsystem. Public Function CreateComponentRenameEventArgs(ByVal component As Object, ByVal oldName As String, ByVal newName As String) As ComponentRenameEventArgs Dim args As New ComponentRenameEventArgs(component, oldName, 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 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.


