Function libui_ng_sys::uiFormAppend
source · pub unsafe extern "C" fn uiFormAppend(
f: *mut uiForm,
label: *const c_char,
c: *mut uiControl,
stretchy: c_int
)Expand description
Appends a control with a label to the form.
Stretchy items expand to use the remaining space within the container. In the case of multiple stretchy items the space is shared equally.
@param f uiForm instance.
@param label Label text.\n
A NUL terminated UTF-8 string.\n
Data is owned by the caller.
@param c Control to append.
@param stretchy TRUE to stretch control, FALSE otherwise.
@memberof uiForm