
This interface provides access to properties and methods available to most block elements.
IHTMLBlockElement Methods
| get_clear | put_clear |
HRESULT get_clear(
BSTR *p
);
Retrieves the clear value, specifying whether the element allows floating elements on its left and/or right sides.
| none | No floating elements allowed. |
| left | Floating elements allowed on the left side. |
| right | Floating elements allowed on the right side. |
| both | Floating elements allowed on both sides. |
See also put_clear
HRESULT put_clear(
BSTR v
);
Sets the clear value, specifying whether the element allows floating elements on its left and/or right sides.
| none | No floating elements allowed. |
| left | Floating elements allowed on the left side. |
| right | Floating elements allowed on the right side. |
| both | Floating elements allowed on both sides. |
See also get_clear
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.