WoW:API Frame GetChildren: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
(Updated to match the current API boilerplate.)
Line 1: Line 1:
{{sd|No content.|sig=--{{#ifeq:sig|sig|[[User:Pcj|Pcj]] ([[User talk:Pcj|T]]•[[Special:Contributions/Pcj|C]])|}} 02:24, 27 June 2007 (UTC)}}
{{sd|No content.|sig=--{{#ifeq:sig|sig|[[User:Pcj|Pcj]] ([[User talk:Pcj|T]]•[[Special:Contributions/Pcj|C]])|}} 02:24, 27 June 2007 (UTC)}}
{{widgetmethod}}
{{widgetmethod}} __NOTOC__
{{stub/api}}




Sample code provided by Iriel:
Gets the children of a frame.
child1, child2, ..., childN = Frame:GetChildren()


== Arguments ==
None
== Returns ==
:(child1, child2, ...)
:; child1 : [[Frame]] - The first child of the frame
:; child2 : [[Frame]] - The second child of the frame
:; ...
:; childN : [[Frame]] - The last child of the frame
== Example ==
  local kids = { QuestLogFrame:GetChildren() };
  local kids = { QuestLogFrame:GetChildren() };
   
   
  for _,child in ipairs(kids) do
  for _, child in ipairs(kids) do
-- stuff
  -- stuff
  end
  end

Revision as of 15:07, 27 June 2007

Template:Sd

Widget API ← Frame < GetChildren


Gets the children of a frame.

child1, child2, ..., childN = Frame:GetChildren()


Arguments

None


Returns

(child1, child2, ...)
child1
Frame - The first child of the frame
child2
Frame - The second child of the frame
...
childN
Frame - The last child of the frame


Example

local kids = { QuestLogFrame:GetChildren() };

for _, child in ipairs(kids) do
  -- stuff
end