IHTMLTable::get_rulesIHTMLTable::get_rules*
*



Contents  *



Index  *Topic Contents
*Previous Topic: IHTMLTable::get_rows
*Next Topic: IHTMLTable::get_tBodies

IHTMLTable::get_rules


HRESULT get_rules(
    BSTR *p 
);

Retrieves which dividing lines are displayed (inner borders).

p
Address of a string variable that receives one of these values:
all Displays a border on all rows and columns.
cols Displays borders between all table columns.
groups Displays horizontal borders between all table groups. Groups are specified by the THEAD, TBODY, TFOOT, and COLGROUP elements.
none Removes all interior table borders.
rows Displays horizontal borders between all table rows.

See also put_rules

Up Top of Page


IHTMLTable::put_rules


HRESULT put_rules(
    BSTR v 
);

Specifies which dividing lines are displayed (inner borders).

v
String value specifying the dividing rules. Can be one of these values:
all Displays a border on all rows and columns.
cols Displays borders between all table columns.
groups Displays horizontal borders between all table groups. Groups are specified by the THEAD, TBODY, TFOOT, and COLGROUP elements.
none Removes all interior table borders.
rows Displays horizontal borders between all table rows.

See also get_rules


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