_dispVCProjectEngineEvents::ItemRenamed Method (Object^, Object^, String^)
Visual Studio 2015
This API supports the product infrastructure and is not intended to be used directly from your code.
Signifies that the specified item in the project was renamed.
Assembly: Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)
Parameters
- Item
-
Type:
System::Object^
Required. The item.
- ItemParent
-
Type:
System::Object^
Required. The item's parent.
- OldName
-
Type:
System::String^
Required. The previous name.
[Visual Basic]
' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
Sub ItemRenamed(ByVal item As Object, ByVal ItemParent As Object, ByVal OldName As String)
Dim vcitem As VCProjectItem
vcitem = item
MsgBox(vcitem.ItemName)
End Sub
Sub Main()
Dim projEngine As VCProjectEngine
Dim evt As VCProjectEngineEvents
Dim prj As VCProject
Dim col As IVCCollection
Dim folder As VCFilter
prj = DTE.Solution.Projects.Item(1).Object
projEngine = prj.VCProjectEngine
col = prj.Filters
evt = projEngine.Events
AddHandler evt.ItemRenamed, AddressOf ItemRenamed
folder = col.Item("MyFolder")
folder.Name = "MyNewFolderName"
End Sub
End Module
Show: