Checking keyboard
To check the status of the checkbox is shown or not, we can use the following function..
ui_keyboard_get_shown();
Return: Boolean
if(ui_keyboard_get_shown())
{
background_color = ui_red;
}
The above line of code is used to check if keyboard is shown, then the change background color to red.