mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +00:00
741 B
741 B
| title |
|---|
| Manager.fontNameForKeyboard() |
Summary
The fontNameForKeyboard() method returns the font name for the given keyboard.
Syntax
Manager.fontNameForKeyboard(fullID: FullKeyboardID)
Parameter
fullID- Full ID of the keyboard.
Returns
Returns String of the font name, nil if the keyboard doesn't have a
font.
Description
This syntax can be used for getting the font name of a keyboard.
Example 1: Using fontNameForKeyboard()
The following script illustrates the use of fontNameForKeyboard():
let fontName: String?
if let id = Manager.shared.currentKeyboardID {
fontName = Manager.shared.fontNameForKeyboard(withFullID: id)
} else {
fontName = nil
}