Keyboard Support

Contact and Search

Keyman.com Homepage

Header bottom

Keyman.com

Other versions
Version 17.0Version 16.0 (current version)Version 15.0Version 14.0Version 13.0Version 12.0Version 11.0Version 10.0Version 2.0

Index

On this page

KMManager.removeKeyboard()

Summary

The removeKeyboard() method removes the keyboard at specified position from the keyboards list.

Syntax

KMManager.removeKeyboard(Context context, int position)

Parameters

context
The context.
position
0-based position of the keyboard in the keyboards list.

Returns

Returns true if the keyboard was removed successfully, false otherwise.

Description

Use this method to remove a keyboard from the keyboards list. If the position is invalid, it will be ignored and the method will return false without altering the keyboards list.

Examples

Example: Using removeKeyboard()

The following script illustrate the use of removeKeyboard():

    // Remove the second keyboard in the list
    KMManager.removeKeyboard(this, 1);

See also