Method

AtspiTextget_text_attribute_value

Declaration [src]

gchar*
atspi_text_get_text_attribute_value (
  AtspiText* obj,
  gint offset,
  const gchar* attribute_name,
  GError** error
)

Description [src]

Gets the value of a named attribute at a given offset.

The implementation of this method is provided by atspi_text_get_attribute_value() in language bindings

Parameters

offset gint
 

The character offset at which to query the attribute.

attribute_name const gchar*
 

The attribute to query.

 The data is owned by the caller of the function.
 The value is a NUL terminated UTF-8 string.
error GError **
  The return location for a GError*, or NULL.

Return value

Returns: gchar*
 

The value of a given attribute at the given offset, or NULL if not present.

 The caller of the method takes ownership of the data, and is responsible for freeing it.
 The return value can be NULL.
 The value is a NUL terminated UTF-8 string.