Widget API: Frame:GetChildren
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, ...)
Example
local kids = { QuestLogFrame:GetChildren() }; for _, child in ipairs(kids) do -- stuff end