WoW:API GetNumSkillLines: Difference between revisions
Jump to navigation
Jump to search
GetNumSkillLines -Documentation by Chevalric-
No edit summary |
No edit summary |
||
Line 36: | Line 36: | ||
---- | ---- | ||
{{ | |||
{{template:WoW API}} |
Revision as of 19:42, 30 December 2005
Returns the number of skill lines in the skill list. This includes headers.
GetNumSkillLines();
- Arguments
- none
- Returns
- numSkills(Number)
- The line count for the skills window, including headers.
- Example
local numSkills = GetNumSkillLines(); for i=1, numSkills do local skillName = getSkillLineInfo(i); end
- Result
"Armor"
- Example from SkillFrame.lua
local numSkills = GetNumSkillLines();
- Description
- Returns the number of lines in the skill window, including headers. This number can be used to loop through all skill lines and retrieving the info using getSkillLineInfo