pub unsafe extern "C" fn uiTableAppendCheckboxColumn(
t: *mut uiTable,
name: *const c_char,
checkboxModelColumn: c_int,
checkboxEditableModelColumn: c_int,
)
Expand description
Appends a column to the table containing a checkbox.
@param t uiTable instance.
@param name Column title text.\n
A valid, NUL
terminated UTF-8 string.\n
Data is copied internally. Ownership is not transferred.
@param checkboxModelColumn Column that holds the data to be displayed.\n
#uiTableValueTypeInt TRUE
for a checked checkbox, FALSE
otherwise.
@param checkboxEditableModelColumn Column that defines whether or not the checkbox is editable.\n
#uiTableValueTypeInt TRUE
to make checkbox editable, FALSE
otherwise.\n
uiTableModelColumnNeverEditable
to make all rows never editable.\n
uiTableModelColumnAlwaysEditable
to make all rows always editable.
@memberof uiTable