mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +00:00
766 B
766 B
| title |
|---|
| KMManager.canAddNewKeyboard() |
Summary
The canAddNewKeyboard() method returns whether adding a new
keyboard is enabled.
Syntax
KMManager.canAddNewKeyboard()
Returns
Returns true if adding a new keyboard is enabled, false otherwise.
Description
Use this method to check if additional keyboards can be added.
Examples
Example: Using canAddNewKeyboard()
The following script illustrate the use of canAddNewKeyboard():
Keyboard kbInfo = ...; // Keyboard information
if (KMManager.canAddNewKeyboard()) {
KMManager.addKeyboard(this, kbInfo);
}