Método IVsRunningDocumentTable.NotifyDocumentChanged (UInt32, UInt32)
Publicado: abril de 2016
Notifica o cliente quando são feitas alterações no documento.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int NotifyDocumentChanged(
uint dwCookie,
uint grfDocChanged
)
int NotifyDocumentChanged(
unsigned int dwCookie,
unsigned int grfDocChanged
)
abstract NotifyDocumentChanged :
dwCookie:uint32 *
grfDocChanged:uint32 -> int
Function NotifyDocumentChanged (
dwCookie As UInteger,
grfDocChanged As UInteger
) As Integer
Parâmetros
- dwCookie
[in] Valor abstrato que representa o documento que é alterado.
- grfDocChanged
[in] Atributos RDT, cujos valores são obtidos a partir do __VSRDTATTRIB enumeração.
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 IVsRunningDocumentTable::NotifyDocumentChanged(
[in] VSCOOKIE dwCookie,
[in] VSRDTATTRIB grfDocChanged
);
O dwCookie parâmetro é o mesmo valor que é retornado de FindAndLockDocument ou RegisterAndLockDocument métodos.
Consulte também
Interface IVsRunningDocumentTable
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo