IHTMLBlockElement

IHTMLBlockElement


This interface provides access to properties and methods available to most block elements.

IHTMLBlockElement Methods
get_clear   put_clear  

IHTMLBlockElement::get_clear

HRESULT get_clear(
    BSTR *p
);

Retrieves the clear value, specifying whether the element allows floating elements on its left and/or right sides.

p
Address of a string variable that receives one of these values:
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

IHTMLBlockElement::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.

v
String specifying the clear value. Can be one of these values:
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.