Method

AtspiEditableTextinsert_text

Declaration [src]

gboolean
atspi_editable_text_insert_text (
  AtspiEditableText* obj,
  gint position,
  const gchar* text,
  gint length,
  GError** error
)

Description [src]

Inserts text into an AtspiEditableText object. As with all character offsets, the specified position may not be the same as the resulting byte offset, since the text is in a variable-width encoding.

Parameters

position gint
 

A #gint indicating the character offset at which to insert the new text.

text const gchar*
 

A string representing the text to insert, in UTF-8 encoding.

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

The number of characters of text to insert, in bytes. If the byte count of text is less than or equal to length, the entire contents of text will be inserted.

error GError **
  The return location for a GError*, or NULL.

Return value

Returns: gboolean
 

TRUE if the operation was successful, otherwise FALSE.