CSharp___DllImport.Phone.KeyboardHook.EnableHardwareKeyboard C# (CSharp) Метод

EnableHardwareKeyboard() публичный статический Метод

The EnableHardwareKeyboard function is useful for applications in which a user can write on the touch screen. When the keyboard is disabled, a user can rest a hand on it without causing spurious keyboard input. Use the disable mode carefully. If an application hangs while the keyboard is disabled, the keyboard is not available to other applications.
public static EnableHardwareKeyboard ( bool bEnable ) : bool
bEnable bool [in] Boolean value that specifies whether to enable or disable the keyboard. Set it to TRUE to enable the keyboard or FALSE to disable it.
Результат bool
            public static bool EnableHardwareKeyboard(bool bEnable)
            {
                return DllImportCaller.lib.IntCall("coredll", "EnableHardwareKeyboard", bEnable ? 1 : 0) == 1;
            }