_dispVCProjectEngineEvents::ItemRenamed Method (Object^, Object^, String^)

 

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.

Namespace:   Microsoft.VisualStudio.VCProjectEngine
Assembly:  Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)

void ItemRenamed(
	Object^ Item,
	Object^ ItemParent,
	String^ OldName
)

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.

The ItemRenamed method fires when an item is renamed in a VCProject, VCFilter, or VCFile object.

[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
Return to top
Show: