Partilhar via


Método IVsIME.GetImmContext (IntPtr, UInt32)

 

Publicado: abril de 2016

Recupera o contexto de Editor de método de entrada (IME) para uma determinada janela.Uso antes de obter ou definir informações do IME usando métodos como GetImmCompositionString.

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

Sintaxe

int GetImmContext(
    IntPtr hwnd,
    out uint phimc
)
int GetImmContext(
    IntPtr hwnd,
    [OutAttribute] unsigned int% phimc
)
abstract GetImmContext : 
        hwnd:nativeint *
        phimc:uint32 byref -> int
Function GetImmContext (
    hwnd As IntPtr,
    <OutAttribute> ByRef phimc As UInteger
) As Integer

Parâmetros

  • hwnd
    [in] Identificador da janela do editor.
  • phimc
    [out] Ponteiro para um identificador para o contexto do IME.

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::GetImmContext(
   [in] HWND hwnd, 
   [out] HIMC * phimc
);

Consulte também

Interface IVsIME
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo