Method
Gtk.ListStore.set_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.
Parameters
| iter | GtkTreeIter | 
| A valid  | |
| Ownership is not transferred to the callee | |
| columns | An array of int | 
| an array of column numbers | |
| The length of the array is in the n_valuesargument | |
| Ownership is not transferred to the callee | |
| values | An array of GValue | 
| an array of GValues | |
| The length of the array is in the n_valuesargument | |
| Ownership is not transferred to the callee | |
| n_values | int | 
| the length of the  |