| Top |  |  |  |  | 
| atspi-hypertextatspi-hypertext — An interface used for objects which implement linking between multiple resource locations. | 
| gint | atspi_hypertext_get_n_links () | 
| AtspiHyperlink * | atspi_hypertext_get_link () | 
| gint | atspi_hypertext_get_link_index () | 
An interface used for objects which implement linking between multiple resource or content locations, or multiple 'markers' within a single document. A hypertext instance is associated with one or more hyperlinks which are associated with particular offests within the hypertext's content.
gint atspi_hypertext_get_n_links (AtspiHypertext *obj,GError **error);
Gets the total number of AtspiHyperlink objects that an AtspiHypertext implementor has.
a gint indicating the number of AtspiHyperlink objects of the AtspiHypertext implementor, or -1 if the number cannot be determined (for example, if the AtspiHypertext object is so large that it is not all currently in the memory cache).
AtspiHyperlink * atspi_hypertext_get_link (AtspiHypertext *obj,gint link_index,GError **error);
Gets the AtspiHyperlink object at a specified index.
| obj | a pointer to the AtspiHypertext implementor on which to operate. | |
| link_index | a (zero-index) gint indicating which hyperlink to query. | 
gint atspi_hypertext_get_link_index (AtspiHypertext *obj,gint character_offset,GError **error);
Gets the index of the AtspiHyperlink object at a specified character offset.
| obj | a pointer to the AtspiHypertext implementor on which to operate. | |
| character_offset | a gint specifying the character offset to query. | 
 the linkIndex of the AtspiHyperlink active at
character offset character_offset
, or -1 if there is
no hyperlink at the specified character offset.