IHTMLAnchorElement::get_revIHTMLAnchorElement::get_rev*
*Contents  *Index  *Topic Contents
*Previous Topic: IHTMLAnchorElement::get_rel
*Next Topic: IHTMLAnchorElement::get_search

IHTMLAnchorElement::get_rev


HRESULT get_rev(
    BSTR *p
);

Same as the rel property, but the semantics of the link type are in the reverse direction. A link from A to B with REL="X" expresses the same relationship as a link from B to A with REV="X". An anchor can have both rel and rev properties.

p
Address of a string variable that receives the relationship(s). This parameter receives a comma-separated list of relationship values.

Up Top of Page


IHTMLAnchorElement::put_rev


HRESULT put_rev(
    BSTR v
);

Same as the rel property, but the semantics of the link type are in the reverse direction. A link from A to B with REL="X" expresses the same relationship as a link from B to A with REV="X". An anchor can have both rel and rev properties.

v
String value specifying the relationship(s). This parameter is a comma-separated list of relationship values.


Up Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.