Method
GimpValueArrayindex
since: 2.10
Declaration [src]
GValue*
gimp_value_array_index (
const GimpValueArray* value_array,
gint index
)
Description [src]
Return a pointer to the value at index
contained in value_array
.
Note: in binding languages, some custom types fail to be correctly passed
through. For these types, you should use specific functions.
For instance, in the Python binding, a GimpColorArray
GValue
won’t be usable with this function. You should use instead
gimp_value_array_get_color_array()
.
Available since: 2.10
Return value
Type: GValue
Pointer to a value at index
in value_array
.
The data is owned by the instance. |