IupVbox
Creates a vbox interface element. It is a box that shows the elements it contains, vertically and from the top down.
Parameters/Return
Ihandle* IupVbox(Ihandle *elem1, Ihandle *elem2, ..., NULL); [in C] iupvbox{elem1, elem2, ...: iuplua_tag} -> (elem: iuplua_tag) [in IupLua3] iup.vbox{elem1, elem2, ...: iuplua_tag} -> (elem: iuplua_tag) [in IupLua5] vbox(elem1, elem2, ...) [in LED]elem1, elem2, ...: List of the identifiers that will be placed in the box. NULL defines the end of the list.
This function returns the identifier of the created vbox, or NULL (nil in Lua) if an error occurs.
Attributes
ALIGNMENT: Horizontally aligns the elements. Possible values:
"ALEFT", "ACENTER", "ARIGHT".
Default: "ALEFT".
GAP: Defines a space, in pixels, between the interface elements.
MARGIN: Defines a margin in pixels.
SIZE: Height of the vbox. Default: smallest size that contains the children elements.
Note
The box can be created with no elements and be dynamic filled using IupAppen.
Examples