Contents Index Topic Contents | ||
Previous Topic: IHTMLStyle::get_marginTop Next Topic: IHTMLStyle::get_padding |
IHTMLStyle::get_overflow
HRESULT get_overflow( BSTR *p );Retrieves the value of the CSS overflow attribute for the element.
- Returns S_OK if successful, or an error value otherwise.
- p
- Address of a variable that receives the value of the attribute, which can be one of these strings:
none clip scroll - See overflow for details. The variable receives NULL if the attribute is not set.
See also put_overflow
IHTMLStyle::put_overflow
HRESULT put_overflow( BSTR v );Sets the value of the CSS overflow attribute for the element.
- Returns S_OK if successful, or an error value otherwise.
- v
- String specifying the value of the attribute. Can be one of these strings:
none clip scroll - See overflow for details. Set this parameter to NULL to remove the attribute.
See also get_overflow
Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.