_dispVCProjectEngineEvents.ItemRenamed Method
This API supports the .NET Framework 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)
Syntax
'Declaration
Sub ItemRenamed ( _
Item As Object, _
ItemParent As Object, _
OldName As String _
)
void ItemRenamed(
Object Item,
Object ItemParent,
string OldName
)
void ItemRenamed(
[InAttribute] Object^ Item,
[InAttribute] Object^ ItemParent,
[InAttribute] String^ OldName
)
abstract ItemRenamed :
Item:Object *
ItemParent:Object *
OldName:string -> unit
function ItemRenamed(
Item : Object,
ItemParent : Object,
OldName : String
)
Parameters
Item
Type: System.ObjectRequired. The item.
ItemParent
Type: System.ObjectRequired. The item's parent.
OldName
Type: System.StringRequired. The previous name.
Remarks
The ItemRenamed method fires when an item is renamed in a VCProject, VCFilter, or VCFile object.
Examples
[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
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.