WoW:API Frame GetChildren: Difference between revisions
Jump to navigation
Jump to search
(Updated to match the current API boilerplate.) |
mNo edit summary |
||
| Line 1: | Line 1: | ||
{{widgetmethod}} __NOTOC__ | {{widgetmethod}} __NOTOC__ | ||
Revision as of 15:29, 27 June 2007
← Widget API ← Frame < GetChildren
Gets the children of a frame.
child1, child2, ..., childN = Frame:GetChildren()
Arguments
None
Returns
- (child1, child2, ...)
Example
local kids = { QuestLogFrame:GetChildren() };
for _, child in ipairs(kids) do
-- stuff
end