Difference between revisions of "IUP/Layout/IupHbox"

From Vendetta Lua
Jump to: navigation, search
(Redirected page to IUP/Controls/IupHbox)
 
Line 1: Line 1:
__NOTOC__
+
#REDIRECT [[IUP/Controls/IupHbox]]
__NOEDITSECTION__
+
{{IUP Controls}}
+
Creates an hbox container for composing elements. It is a box that arranges the elements it contains, horizontally and from left to right.
+
 
+
===Creation===
+
 
+
    iup.hbox{'''elem1''', '''elem2''', ...: ihandle} -> ('''elem''': ihandle)
+
 
+
:'''elem1''', '''elem2''',...: List of identifiers that will be placed in the box.
+
 
+
:This function returns the identifier of the created hbox.
+
 
+
===Attributes===
+
 
+
:'''ALIGNMENT''': Aligns the elements vertically. Possible values: "ATOP", "ACENTER", "ABOTTOM". Default: "ATOP".
+
 
+
:'''GAP''': Defines a space in pixels between the interface elements. Default: "0".
+
 
+
:'''MARGIN''': Defines a margin in pixels. Its value has the format "''widthxheight''", where ''width'' and ''height'' are integer values corresponding to the horizontal and vertical margins, respectively. Default: "0x0" (no margin).
+
 
+
:[[IUP/Attributes/Common/SIZE|SIZE]]: Width of the hbox. Default: the smallest size that contains the children elements.
+
 
+
===Note===
+
 
+
    The box can be created with no elements and be dynamic filled using [[IUP/Layout/IupAppend]].
+
 
+
===Examples===
+
 
+
iuphbox.gif (7213 bytes)
+
===See Also===
+
 
+
:[[IUP/Layout/IupZbox|IupZbox]], [[IUP/Layout/IupVbox|IupVbox]]
+
 
+
[[Category:IUP Controls]]
+

Latest revision as of 07:59, 12 May 2023