WoW:API CollapseTrainerSkillLine: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
 
(Added documentation)
Line 1: Line 1:
{{API/Uncategorized}}
<center>'''CollapseTrainerSkillLine''' ''-Documentation by [[User:starlightblunder|starlightblunder]]-''</center>
 
Collapses a header, hiding all spells below it.
 
CollapseTrainerSkillLine(id);
 
----
;''Arguments''
 
:; id : Index of the trainer service header to collapse (if the supplied index is not a header, an error is produced). Note that indices are affected by the trainer filter. (See [[API_GetTrainerServiceTypeFilter|GetTrainerServiceTypeFilter]] and [[API_SetTrainerServiceTypeFilter|SetTrainerServiceTypeFilter]].)
 
----
;''Example''
 
Collapses all trainer headers.
local i, category;
for i=1,GetNumTrainerServices() do
  _ , _, category = GetTrainerServiceInfo(i);
  if (category == nil) then
  break; -- GetNumTrainerServices() does not check if you're talking to a trainer or not.
  end
  if (category == "header") then
  CollapseTrainerSkillLine(i);
  end
end
 
 
----
{{WoW API}}

Revision as of 11:54, 4 March 2006

CollapseTrainerSkillLine -Documentation by starlightblunder-

Collapses a header, hiding all spells below it.

CollapseTrainerSkillLine(id);

Arguments
id
Index of the trainer service header to collapse (if the supplied index is not a header, an error is produced). Note that indices are affected by the trainer filter. (See GetTrainerServiceTypeFilter and SetTrainerServiceTypeFilter.)

Example

Collapses all trainer headers.

local i, category;
for i=1,GetNumTrainerServices() do
 _ , _, category = GetTrainerServiceInfo(i);
 if (category == nil) then
  break; -- GetNumTrainerServices() does not check if you're talking to a trainer or not.
 end
 if (category == "header") then
  CollapseTrainerSkillLine(i);
 end
end



Template:WoW API