Method
GtkTreeStoreset_valuesv
since: 2.12
Declaration [src]
void
gtk_tree_store_set_valuesv (
  GtkTreeStore* tree_store,
  GtkTreeIter* iter,
  gint* columns,
  GValue* values,
  gint n_values
)
      Description [src]
A variant of gtk_tree_store_set_valist() which takes
the columns and values as two arrays, instead of varargs.  This
function is mainly intended for language bindings or in case
the number of columns to change is not known until run-time.
Available since: 2.12
This method is renamed to gtk_tree_store_set() in language bindings.
Parameters
iter- 
            
Type:
GtkTreeIterA valid
GtkTreeIterfor the row being modified.The data is owned by the caller of the method.  columns- 
            
Type: An array of
gintAn array of column numbers.
The length of the array is specified in the n_valuesargument.The data is owned by the caller of the method.  values- 
            
Type: An array of
GValueAn array of GValues.
The length of the array is specified in the n_valuesargument.The data is owned by the caller of the method.  n_values- 
            
Type:
gintThe length of the
columnsandvaluesarrays.