Method

ClutterContainerchild_get_property

Declaration [src]

void
clutter_container_child_get_property (
  ClutterContainer* container,
  ClutterActor* child,
  const gchar* property,
  GValue* value
)

Description [src]

Gets a container specific property of a child of container, In general, a copy is made of the property contents and the caller is responsible for freeing the memory by calling g_value_unset().

Note that clutter_container_child_set_property() is really intended for language bindings, clutter_container_child_set() is much more convenient for C programming.

Parameters

child

Type: ClutterActor

A ClutterActor that is a child of container.

The data is owned by the caller of the method.
property

Type: const gchar*

The name of the property to set.

The data is owned by the caller of the method.
The value is a NUL terminated UTF-8 string.
value

Type: GValue

The value.

The data is owned by the caller of the method.