pub unsafe extern "C" fn uiGridInsertAt(
g: *mut uiGrid,
c: *mut uiControl,
existing: *mut uiControl,
at: uiAt,
xspan: c_int,
yspan: c_int,
hexpand: c_int,
halign: uiAlign,
vexpand: c_int,
valign: uiAlign,
)
Expand description
Inserts a control positioned in relation to another control within the grid.
@param g uiGrid instance.
@param c The control to insert.
@param existing The existing control to position relatively to.
@param at Placement specifier in relation to @p existing control.
@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