webkit
2cdf99a9e3038c7e01b3c37e8ad903ecbe5eecf1
https://github.com/WebKit/webkit
|
import"AccessibleRelation.idl";
Properties | |
BSTR | relationType [get] |
Returns the type of the relation. More... | |
BSTR | localizedRelationType [get] |
Returns a localized version of the relation type. More... | |
long | nTargets [get] |
Returns the number of targets for this relation. More... | |
IUnknown | target ([in] long targetIndex) [get] |
Returns one accessible relation target. More... | |
long | targets ([in] long maxTargets, [out, size_is(maxTargets), length_is(*nTargets)] IUnknown targets) [get] |
Returns multiple accessible relation targets. More... | |
This interface gives access to an object's set of relations.
|
get |
Returns a localized version of the relation type.
[out] | localizedRelationType |
S_OK |
|
get |
Returns the number of targets for this relation.
[out] | nTargets |
S_OK |
|
get |
Returns the type of the relation.
[out] | relationType | The strings returned are defined in this section of the documentation. |
S_OK |
|
get |
Returns one accessible relation target.
[in] | targetIndex | 0 based index |
[out] | target |
S_OK | |
E_INVALIDARG | if bad [in] passed |
|
get |
Returns multiple accessible relation targets.
[in] | maxTargets | maximum size of the array allocated by the client |
[out] | targets | The array of target objects. Note that this array is to be allocated by the client and freed when no longer needed. Refer to Special Consideration when using Arrays for more details. You will need to use QueryInterface on the IUnknown to get the IAccessible2. |
[out] | nTargets | actual number of targets in the returned array (not more than maxTargets) |
S_OK | |
E_INVALIDARG | if bad [in] passed, e.g. a negative value |