WoW:API GetNumBindings: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
(upgraded deprecated template)
Line 1: Line 1:
{{wowapi}}
<center>'''GetNumBindings'''</center>
<center>'''GetNumBindings'''</center>


Line 18: Line 19:
;''Example''
;''Example''
  numKeyBindings = GetNumBindings();
  numKeyBindings = GetNumBindings();
----
{{Template:WoW API}}

Revision as of 18:11, 6 January 2007

WoW API < GetNumBindings

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();