Compartilhar via


Método IVsStatusbar.FreezeOutput (Int32)

 

Publicado: abril de 2016

Inibe atualizações para a área de texto de status.

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

Sintaxe

int FreezeOutput(
    int fFreeze
)
int FreezeOutput(
    int fFreeze
)
abstract FreezeOutput : 
        fFreeze:int -> int
Function FreezeOutput (
    fFreeze As Integer
) As Integer

Parâmetros

  • fFreeze
    [in] true informa ao ambiente de colocar um congelamento na barra de status.Nenhuma outra atualização pode ser feitas até que o congelamento seja liberado.falselibera o congelamento.

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 IVsStatusbar::FreezeOutput(
   [in] BOOL fFreeze
);

Você pode fazer várias chamadas para FreezeOutput, ou seja, o congelamento de barra de status pode ser aninhado.Cada chamada aninhada deve ser iguais com uma chamada para liberar o congelamento correspondente.Chame GetFreezeCount para recuperar o número atual de congelamento em vigor.

Consulte também

Interface IVsStatusbar
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo