@get
Description:
public void @get (...)
Gets the value of one or more cells in the row referenced by this.
Note:
Use ListModel instead
The variable argument list should contain integer column numbers, each column column number followed by a place to store the value being retrieved. The list is terminated by a -1.
For example, to get a value from column 0 with type STRING use:
clutter_model_iter_get (iter, 0, &place_string_here, -1);
where place_string_here is a gchar* to be filled with the string. If appropriate, the returned values have to be freed or unreferenced.
Parameters:
this | |
... |
a list of column/return location pairs, terminated by -1 |