import "AccessibleHyperlink.idl";
Public Member Functions | |
HRESULT | anchor ([in] long index,[out, retval] VARIANT *anchor) |
Returns an object that represents the link anchor, as appropriate for the link at the specified index. | |
HRESULT | anchorTarget ([in] long index,[out, retval] VARIANT *anchorTarget) |
Returns an object representing the target of the link, as appropriate for the link at the specified index. | |
HRESULT | startIndex ([out, retval] long *index) |
Returns the 0 based character offset at which the textual representation of the hyperlink starts. | |
HRESULT | endIndex ([out, retval] long *index) |
Returns the 0 based character offset at which the textual representation of the hyperlink ends. | |
HRESULT | valid ([out, retval] boolean *valid) |
Returns whether the target object referenced by this link is still valid. |
This interface represents a hyperlink associated with a single substring of text or single non-text object. Non-text objects can have either a single link or a collection of links such as when the non-text object is an image map.
Linked objects and anchors are implementation dependent. This interface is derived from IAccessibleAction. IAccessibleAction::nActions is one greater than the maximum value for the indices used with the methods of this interface.
Furthermore, the object that implements this interface has to be connected implicitly or explicitly with an object that implements IAccessibleText. IAccessibleHyperlink::startIndex and IAccessibleHyperlink::endIndex are indices with respect to the text exposed by IAccessibleText.
This interface provides access to a single object which can have multiple actions. An example is an image map which is an image with multiple links each of which is associated with a separate non-overlapping area of the image. This interface could also be applied to other kinds of objects with multiple actions such as "smart tags" which are objects, typically strings, which have multiple actions such as "Activate URI", "Bookmark URI", etc.
An interesting use case is an image map where each area is associated with multiple actions, e.g. an image map of smart tags. In this case you would have to implement two levels of accessible hyperlinks. The first level hyperlinks would only implement anchor and anchorTarget. The anchors would all reference the image object. The anchorTargets would reference the second level accessible hyperlink objects. None of the IAccessibleAction methods would be implemented on the first level hyperlink objects. The second level hyperlink objects would implement the IAccessibleAction methods. Their anchors would also reference the image object and their anchorTargets would reference URLs or the objects that would be activated.
This use case demonstrates that in some cases there is no need for IAccessibleHyperlink to derive from IAccessibleAction. As a result it may be removed in a later version of the IDL and it is suggested that implementations should not rely on the inheritance.
HRESULT IAccessibleHyperlink::anchor | ( | [in] long | index, | |
[out, retval] VARIANT * | anchor | |||
) | [get] |
Returns an object that represents the link anchor, as appropriate for the link at the specified index.
[in] | index | A 0 based index identifies the anchor when, as in the case of an image map, there is more than one link represented by this object. The valid maximal index is indicated by IAccessibleAction::nActions. |
[out] | anchor | This is an implementation dependent value. For example, for a text link this method could return the substring of the containing string where the substring is overridden with link behavior, and for an image link this method could return an IUnknown VARIANT for IAccessibleImage. See the section about VARIANTs for additional information. |
S_OK | ||
S_FALSE | if there is nothing to return, [out] value is NULL | |
E_INVALIDARG | if bad [in] passed, [out] value is NULL |
HRESULT IAccessibleHyperlink::anchorTarget | ( | [in] long | index, | |
[out, retval] VARIANT * | anchorTarget | |||
) | [get] |
Returns an object representing the target of the link, as appropriate for the link at the specified index.
[in] | index | A 0 based index identifies the anchor when, as in the case of an image map, there is more than one link represented by this object. The valid maximal index is indicated by IAccessibleAction::nActions. |
[out] | anchorTarget | This is an implementation dependent value. For example this method could return a BSTR VARIANT of the URI. Alternatively this method could return an IUnknown VARIANT of a COM interface representing a target object to be activated when the link is activated. See the section about VARIANTs for additional information. |
S_OK | ||
S_FALSE | if there is nothing to return, [out] value is NULL | |
E_INVALIDARG | if bad [in] passed, [out] value is NULL |
HRESULT IAccessibleHyperlink::endIndex | ( | [out, retval] long * | index | ) | [get] |
Returns the 0 based character offset at which the textual representation of the hyperlink ends.
The returned value is related to the IAccessibleText interface of the object that owns this hyperlink. The character at the index is not part of the hypertext.
[out] | index |
S_OK |
HRESULT IAccessibleHyperlink::startIndex | ( | [out, retval] long * | index | ) | [get] |
Returns the 0 based character offset at which the textual representation of the hyperlink starts.
The returned value is related to the IAccessibleText interface of the object that owns this hyperlink.
[out] | index |
S_OK |
HRESULT IAccessibleHyperlink::valid | ( | [out, retval] boolean * | valid | ) | [get] |
Returns whether the target object referenced by this link is still valid.
This is a volatile state that may change without sending an appropriate event. Returns TRUE if the referenced target is still valid and FALSE otherwise.
This has also been used to indicate whether or not the URI of the anchorTarget is malformed.
Note: This method is not being used, is deprecated, and should not be implemented or used. It is likely that this method will be removed in a later version of the IDL.
[out] | valid |
S_OK | ||
S_FALSE | if there is nothing to return, [out] value is FALSE |
http://bugs.linuxfoundation.org/
.
When using Bugzilla please be sure to select
IAccessible2 from the list of components.
Bugzilla is the preferred method for receiving feedback because it
automatically logs one's feedback in the IAccessible2 tracking system
without additional human intervention. One may also, however, send email to accessibility-rfc@a11y.org, a publicly archived emailing list. Please address any technical
problems you encounter with this document or the resources to which it
links, to the Open A11y Webmaster <webmaster@a11y.org>
A stable online reference version of the documentation for IAccessible2 API Version 1.0.2,
is available at: http://a11y.org/ia2-spec. A list
of known and reported
errors in the documentation for IAccessible2 API Version 1.0.2 can be found at:
http://a11y.org/ia2-errata