Hey! this might be a really simple question but I have a line of code that opens the native keyboard of a mobile device.
public void OpenKeyBoard(string IFValue)
{
if (TouchScreenKeyboard.visible == false && !IS_KeyboadOpen)
{
TouchScreenKeyboard.Open( IFValue, TouchScreenKeyboardType.Default, false, false, false);
IS_KeyboadOpen = true;
}
}
But what line of code can I use to Close the keyboard?
Any help appreciated!