WoW:API GetNumBindings: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(Function info)
 
mNo edit summary
Line 21: Line 21:
----
----
{{Template:WoW API}}
{{Template:WoW API}}
[[Category:API Functions|GetNumBindings]]
[[Category:API Key Binding Functions|GetNumBindings]]

Revision as of 18:39, 29 August 2005

GetNumBindings

Returns the total number of key bindings listed in the key bindings window. This includes not only actions that can be bound, but also the category headers in the window. This would generally be used in conjunction with GetBinding(index) to loop through and set/get all of the key bindings available.


Arguments
(no arguments)

Returns
Integer numKeyBindings
numKeyBindings
The total number of key bindings (including headers) listed in the key bindings window.

Example
numKeyBindings = GetNumBindings();

Template:WoW API