Function libui_ng_sys::uiGridAppend
source · pub unsafe extern "C" fn uiGridAppend(
g: *mut uiGrid,
c: *mut uiControl,
left: c_int,
top: c_int,
xspan: c_int,
yspan: c_int,
hexpand: c_int,
halign: uiAlign,
vexpand: c_int,
valign: uiAlign
)Expand description
Appends a control to the grid.
@param g uiGrid instance.
@param c The control to insert.
@param left Placement as number of columns from the left. Integer in range of [INT_MIN, INT_MAX].
@param top Placement as number of rows from the top. Integer in range of [INT_MIN, INT_MAX].
@param xspan Number of columns to span. Integer in range of [0, INT_MAX].
@param yspan Number of rows to span. Integer in range of [0, INT_MAX].
@param hexpand TRUE to expand reserved area horizontally, FALSE otherwise.
@param halign Horizontal alignment of the control within the reserved space.
@param vexpand TRUE to expand reserved area vertically, FALSE otherwise.
@param valign Vertical alignment of the control within the reserved space.
@memberof uiGrid