CREATE_KEY_MAP_LIST Creates and names a key-map list, and also specifies the initial key maps in the key-map list it creates; optionally returns the name of the key-map list created for use with other TPU procedures. Syntax [string3] := CREATE_KEY_MAP_LIST (string1, string2 [,...]) Parameters string1 The name of the key-map list that you create. string2 The names of the initial key maps within the key-map list you create. Example The following procedure creates two key maps, and groups them into a key-map list: PROCEDURE init_help_key_map_list help_user_keys := CREATE_KEY_MAP ("help_user_keys"); help_keys := CREATE_KEY_MAP ("help_keys"); help_key_list := CREATE_KEY_MAP_LIST ("help_key_list", help_user_keys, help_keys); ENDPROCEDURE; Related topics CREATE_KEY_MAP REMOVE_KEY_MAP