Partilhar via


Método IVsIME.GetDefaultWindow (IntPtr, IntPtr)

 

Recupera a janela padrão para a classe do Editor de método de entrada (IME) que está ativa.Wrapper para uma chamada para ImmGetDefaultIMEWnd.

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

Sintaxe

int GetDefaultWindow(
    IntPtr hwnd,
    out IntPtr phRetVal
)
int GetDefaultWindow(
    IntPtr hwnd,
    [OutAttribute] IntPtr% phRetVal
)
abstract GetDefaultWindow : 
        hwnd:nativeint *
        phRetVal:nativeint byref -> int
Function GetDefaultWindow (
    hwnd As IntPtr,
    <OutAttribute> ByRef phRetVal As IntPtr
) As Integer

Parâmetros

  • hwnd
    [in] O identificador da janela do editor.
  • phRetVal
    [out] Se for bem-sucedido, a janela padrão para a classe do IME.Caso contrário, null.

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 IVsIME::GetDefaultWindow(
   [in] HWND hwnd, 
   [out] HWND* phRetVal
);

Consulte também

Interface IVsIME
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo