ImmGetCompositionString (imm32)
Last changed: Susko3-109.60.106.100

.
Summary
TODO - a short description

C# Signature:

[DllImport("imm32.dll", CharSet=CharSet.Unicode)]

static extern int ImmGetCompositionString(In hIMC, In dwIndex, char[] lpBuf, In dwBufLen);

VB Signature:

Declare Function ImmGetCompositionString Lib "imm32.dll" (TODO) As TODO

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

[DllImport("imm32.dll", CharSet=CharSet.Unicode)]

private static extern int ImmGetCompositionString(In hIMC, In dwIndex, char[] lpBuf, In dwBufLen);

public static int GetCompositionString(IntPtr contextHandle, uint dwIndex, char[] lpBuf, uint dwBufLen)

{

    return ImmGetCompositionString(contextHandle, dwIndex, lpBuf, dwBufLen);

}

Documentation