IUP/Layout/IupGetNextChild

From Vendetta Lua
Revision as of 07:36, 9 May 2023 by Draugath (Talk | contribs) (Created page with "__NOTOC__ __NOEDITSECTION__ :Returns the children of the given control. ===Parameters/Return=== :iup.GetNextChild('''parent''', '''lastchild''': ihandle) -> '''ret''': ihan...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search


Returns the children of the given control.

Parameters/Return

iup.GetNextChild(parent, lastchild: ihandle) -> ret: ihandle
parent: Identifier of an interface control.
lastchild: Identifier of the last interface control returned by the function. (optional)

Note

This function will return the children of the control in the exact same order in which they were assigned. To get the first child use lastchild=nil.

See Also

IupGetBrother