Desktop Functions: Smart Device Functions:
|
ImmGetCompositionString (imm32)
C# Signature:[DllImport("imm32.dll", CharSet=CharSet.Unicode)] static extern int ImmGetCompositionString(IntPtr hIMC, uint dwIndex, char[] lpBuf, uint 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); } Please edit this page!Do you have...
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more). |
|