Método IVsEditorFactoryNotify.NotifyItemRenamed (IVsHierarchy, UInt32, String, String)
Método chamado quando um arquivo é renomeado.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int NotifyItemRenamed(
IVsHierarchy pHier,
uint itemid,
string pszMkDocumentOld,
string pszMkDocumentNew
)
int NotifyItemRenamed(
IVsHierarchy^ pHier,
unsigned int itemid,
String^ pszMkDocumentOld,
String^ pszMkDocumentNew
)
abstract NotifyItemRenamed :
pHier:IVsHierarchy *
itemid:uint32 *
pszMkDocumentOld:string *
pszMkDocumentNew:string -> int
Function NotifyItemRenamed (
pHier As IVsHierarchy,
itemid As UInteger,
pszMkDocumentOld As String,
pszMkDocumentNew As String
) As Integer
Parâmetros
- pHier
[in] Ponteiro para o IVsHierarchy para o item renomeado.
- itemid
[in] O item ID (VSITEMID) do arquivo.
- pszMkDocumentOld
[in] Ponteiro para uma seqüência de caracteres que contém o nome antigo.
- pszMkDocumentNew
[in] Ponteiro para uma seqüência de caracteres que contém o novo nome.
Valor de retorno
Type: System.Int32
Se o método for bem-sucedido, ele retorna S_OK.Se ele falhar, ele retorna um código de erro.
Comentários
COM assinatura
De vsshell.idl:
HRESULT IVsEditorFactoryNotify::NotifyItemRenamed(
in] IVsHierarchy *pHier,
[in] VSITEMID itemid,
[in] LPCOLESTR pszMkDocumentOld,
[in] LPCOLESTR pszMkDocumentNew
);
Consulte também
Interface IVsEditorFactoryNotify
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo