Method
GtkListStoreset_valuesv
Declaration [src]
void
gtk_list_store_set_valuesv (
GtkListStore* list_store,
GtkTreeIter* iter,
int* columns,
GValue* values,
int n_values
)
Description [src]
A variant of gtk_list_store_set_valist()
which
takes the columns and values as two arrays, instead of
varargs. This function is mainly intended for
language-bindings and in case the number of columns to
change is not known until run-time.
This method is renamed to gtk_list_store_set() in language bindings |
Parameters
iter |
GtkTreeIter |
A valid |
|
The data is owned by the caller of the function. | |
columns |
An array of int |
An array of column numbers. |
|
The length of the array is specified in the n_values argument. | |
The data is owned by the caller of the function. | |
values |
An array of GValue |
An array of GValues. |
|
The length of the array is specified in the n_values argument. | |
The data is owned by the caller of the function. | |
n_values |
int |
The length of the |