Keyboard Support

Contact and Search

Keyman.com Homepage

Header bottom

Keyman.com

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

On this page

Manager.removeKeyboard()

Summary

The removeKeyboard() method removes a keyboard from the keyboard list by a specified keyboard ID or position.

Syntax

Manager.removeKeyboard(fullID: FullKeyboardID)

Parameters

fullID
The full keyboard ID.

Returns

Returns true if the keyboard exists and was removed, false otherwise.

Description

Use this method to remove a keyboard from the list in the keyboard picker. If the keyboard doesn't exist, it will be ignored and the method will return false without altering the keyboards list.

Examples

Example: Using removeKeyboard()

The following script illustrates the use of removeKeyboard():

Manager.removeKeyboard('tamil99');


Syntax

Manager.removeKeyboard(index: Int)

Parameters

index
Index of keyboard to remove from the keyboards list.

Returns

Returns true if the keyboard exists and was removed, false otherwise.

Description

Use this method to remove the keyboard at index from the keyboards list. If the keyboard doesn't exist, it will be ignored and the method will return false without altering the keyboards list.

Examples

Example: Using removeKeyboard()

The following script illustrates the use of removeKeyboard():

if Manager.shared.removeKeyboard(at: indexPath.row) {
  loadUserKeyboards()
}

See also