nsISupports
Last changed in Gecko 1.9 (Firefox 3)nsIAccessibleHyperLink getLink(in long linkIndex); |
long getLinkIndex(in long charIndex); |
long getSelectedLinkIndex(); Obsolete since Gecko 1.9 |
Attribute | Type | Description |
linkCount |
long |
The number of links contained within this hypertext object. Read only. Note: Renamed from links in Gecko 1.9 |
Retrieves the nsIAccessibleHyperLink
object at the given link index.
nsIAccessibleHyperLink getLink( in long linkIndex );
linkIndex
0-based index of the link that is to be retrieved. This can be retrieved via getLinkIndex()
.
An nsIAccessibleHyperLink
object.
The link index at the given offset (character index).
long getLinkIndex( in long charIndex );
charIndex
The index of the link if it's presented on the given character index, otherwise -1.
long getSelectedLinkIndex();
None.
Missing Description