Method
GtkTreeStoreinsert_with_valuesv
Declaration [src]
void
gtk_tree_store_insert_with_valuesv (
  GtkTreeStore* tree_store,
  GtkTreeIter* iter,
  GtkTreeIter* parent,
  int position,
  int* columns,
  GValue* values,
  int n_values
)
Description [src]
A variant of gtk_tree_store_insert_with_values() which takes the columns and values as two arrays, instead of varargs. This function is mainly intended for language bindings.
Parameters
| iter | GtkTreeIter | 
| An unset  | |
| The argument will be set by the function. | |
| The argument can be NULL. | |
| The data is owned by the caller of the function. | |
| parent | GtkTreeIter | 
| A valid  | |
| The argument can be NULL. | |
| The data is owned by the caller of the function. | |
| position | int | 
| Position to insert the new row, or -1 for last. | |
| columns | An array of int | 
| An array of column numbers. | |
| The length of the array is specified in the n_valuesargument. | |
| 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_valuesargument. | |
| The data is owned by the caller of the function. | |
| n_values | int | 
| The length of the  |