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).
- Returns S_OK if successful, or an error value otherwise.
- 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
IHTMLTable::put_rules
HRESULT put_rules( BSTR v );Specifies which dividing lines are displayed (inner borders).
- Returns S_OK if successful, or an error value otherwise.
- 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
Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.