lookup

fun lookup(lookupKey: String): KeyCode?

Answer the KeyCode that matches the provided KeyCode.lookupKey.

Return

The matching KeyCode of null if not found.

Parameters

lookupKey

The String lookup key to retrieve.


fun lookup(char: Char): KeyCode?

Answer the KeyCode that matches the provided Char in the KeyCode.overLapCharacters.

Return

The matching KeyCode of null if not found.

Parameters

char

The char in the overLapCharacters to retrieve.