Método IVsRunningDocTableEvents4.OnAfterLastDocumentUnlock (IVsHierarchy, UInt32, String, Int32)

 

Publicado: abril de 2016

Acionado após o último documento na tabela de documento em execução (RDT) está desbloqueado.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.8.0 (em Microsoft.VisualStudio.Shell.Interop.8.0.dll)

Sintaxe

int OnAfterLastDocumentUnlock(
    IVsHierarchy pHier,
    uint itemid,
    string pszMkDocument,
    int fClosedWithoutSaving
)
int OnAfterLastDocumentUnlock(
    IVsHierarchy^ pHier,
    unsigned int itemid,
    String^ pszMkDocument,
    int fClosedWithoutSaving
)
abstract OnAfterLastDocumentUnlock : 
        pHier:IVsHierarchy *
        itemid:uint32 *
        pszMkDocument:string *
        fClosedWithoutSaving:int -> int
Function OnAfterLastDocumentUnlock (
    pHier As IVsHierarchy,
    itemid As UInteger,
    pszMkDocument As String,
    fClosedWithoutSaving As Integer
) As Integer

Parâmetros

  • pHier
    [in] O IVsHierarchy objeto que é proprietário do documento prestes a ser bloqueada.
  • pszMkDocument
    [in] O caminho para o documento prestes a ser bloqueada.
  • fClosedWithoutSaving
    [in] true se o documento foi fechado sem salvá-lo; Caso contrário, false.

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 vsshell80.idl:

[C++]

HRESULT OnAfterLastDocumentUnlock(
    [in] IVsHierarchy* pHier,
    [in] VSITEMID itemid,
    [in] LPCOLESTR pszMkDocument,
    [in] BOOL fClosedWithoutSaving
);

Consulte também

Interface IVsRunningDocTableEvents4
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo