Widget API: Frame:GetChildren

From AddOn Studio
Revision as of 15:29, 27 June 2007 by WoWWiki>Pcj
Jump to navigation Jump to search

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