Method
GtkListStoreinsert_with_valuesv
since: 2.6
Declaration [src]
void
gtk_list_store_insert_with_valuesv (
GtkListStore* list_store,
GtkTreeIter* iter,
gint position,
gint* columns,
GValue* values,
gint n_values
)
Description [src]
A variant of gtk_list_store_insert_with_values()
which
takes the columns and values as two arrays, instead of
varargs. This function is mainly intended for language-bindings.
Available since: 2.6
Parameters
iter
-
Type:
GtkTreeIter
An unset
GtkTreeIter
to set to the new row, orNULL
.The argument will be set by the function. The argument can be NULL
.The returned data is owned by the instance. position
-
Type:
gint
Position to insert the new row, or -1 for last.
columns
-
Type: An array of
gint
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 method. values
-
Type: 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 method. n_values
-
Type:
gint
The length of the
columns
andvalues
arrays.