IHTMLRuleStyle::get_styleFloatIHTMLRuleStyle::get_styleFloat*
*Contents  *Index  *Topic Contents
*Previous Topic: IHTMLRuleStyle::put_styleFloat
*Next Topic: IHTMLRuleStyle::put_clear

IHTMLRuleStyle::get_styleFloat


HRESULT get_styleFloat(
    BSTR *p 
);

Retrieves the value of the CSS float attribute for the element.

p
Address of a variable that receives the value of the attribute, which can be one of these strings:
left
right
none
See height for details. This parameter receives NULL if the attribute is not set.

See also put_styleFloat

Up Top of Page


IHTMLRuleStyle::put_styleFloat


HRESULT put_styleFloat(
    BSTR v 
);

Sets the value of the CSS float attribute for the element. The attribute determines whether the element floats, causing text to flow around it.

v
String specifying the value of the attribute. Can be one of these strings:
left
right
none
Set this parameter to NULL to remove the attribute. See float for details.

See also get_styleFloat


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