
HRESULT put_borderStyle(
BSTR v
);
Sets the value of the CSS border-style attribute for the element. The attribute determines the style of the left, right, top, and bottom borders.
See also get_borderStyle
HRESULT get_borderStyle(
BSTR *p
);
Retrieves the value of the CSS border-style attribute for the element.
See also put_borderStyle
HRESULT put_borderTopStyle(
BSTR v
);
Sets the value of the CSS border-top-style attribute for the element. The attribute determines the style of the top border.
See also get_borderTopStyle
HRESULT get_borderTopStyle(
BSTR *p
);
Retrieves the value of the CSS border-top-style attribute for the element.
See also put_borderTopStyle
HRESULT put_borderRightStyle(
BSTR v
);
Sets the value of the CSS border-right-style attribute for the element. The attribute determines the style of the right border.
See also get_borderRightStyle
HRESULT get_borderRightStyle(
BSTR *p
);
Retrieves the value of the CSS border-right-style attribute for the element.
See also put_borderRightStyle
HRESULT put_borderBottomStyle(
BSTR v
);
Sets the value of the CSS border-bottom-style attribute for the element. The attribute determines the style of the bottom border.
See also get_borderBottomStyle
HRESULT get_borderBottomStyle(
BSTR *p
);
Retrieves the value of the CSS border-bottom-style attribute for the element.
See also put_borderBottomStyle
HRESULT put_borderLeftStyle(
BSTR v
);
Sets the value of the CSS border-left-style attribute for the element. The attribute determines the style of the left border.
See also get_borderLeftStyle
HRESULT get_borderLeftStyle(
BSTR *p
);
Retrieves the value of the CSS border-left-style attribute for the element.
See also put_borderLeftStyle
HRESULT put_width(
VARIANT v
);
Sets the value of the CSS width attribute for the element. The attribute determines the element's width.
See also get_width
HRESULT get_width(
VARIANT *p
);
Retrieves the value of the CSS width attribute for the element.
See also put_height
HRESULT put_height(
VARIANT v
);
Sets the value of the CSS height attribute for the element. The attribute determines the element's height.
See also get_height
HRESULT get_height(
VARIANT *p
);
Retrieves the value of the CSS height attribute for the element.
See also put_height
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.
| left |
| right |
| none |
See also get_styleFloat
HRESULT get_styleFloat(
BSTR *p
);
Retrieves the value of the CSS float attribute for the element.
| left |
| right |
| none |
See also put_styleFloat
HRESULT put_clear(
BSTR v
);
Sets the value of the CSS clear attribute for the element. The attribute determines whether the element allows floating elements (typically images) on its left and right sides. More specifically, the attribute specifies the sides where floating elements are not allowed.
| left |
| right |
| both |
See also get_clear
HRESULT get_clear(
BSTR *p
);
Retrieves the value of the CSS clear attribute for the element.
| left |
| right |
| both |
See also put_clear
HRESULT put_display(
BSTR v
);
Sets the value of the CSS display attribute for the element. The attribute determines whether the element is rendered.
Although you can apply the display attribute to parts of a table (such as a TR or TD element), changing the property has no effect on those parts. However, you can dynamically control the rendering of the entire table by applying the attribute to the TABLE element.
See also get_display
HRESULT get_display(
BSTR *p
);
Retrieves the value of the display attribute for the element.
See also put_display
HRESULT put_visibility(
BSTR v
);
Sets the value of the CSS visibility attribute for the element. The attribute determines whether the content of the element is visible.
| visible |
| hidden |
| inherit |
Space is reserved for the element's content regardless of the value of the visibility attribute.
See also get_visibility
HRESULT get_visibility(
BSTR *p
);
Retrieves the value of the visibility attribute for the element.
| visible |
| hidden |
| inherit |
See also put_visibility
HRESULT put_listStyleType(
BSTR v
);
Sets the value of the CSS list-style-type attribute for the element. The attribute determines the appearance of the list-item marker if the list-style-image is set to "none" or if the image pointed to by the URL cannot be displayed.
| disk |
| circle |
| square |
| decimal |
| lower-roman |
| upper-roman |
| lower-alpha |
| upper-alpha |
| none |
The list-style-type attribute is applicable only on elements that have the display attribute set to "list-item".
See also get_listStyleType
HRESULT get_listStyleType(
BSTR *p
);
Retrieves the value of the CSS list-style-type attribute for the element.
| disk |
| circle |
| square |
| decimal |
| lower-roman |
| upper-roman |
| lower-alpha |
| upper-alpha |
| none |
The list-style-type attribute is applicable only on elements that have the display attribute set to "list-item".
See also put_listStyleType
HRESULT put_listStylePosition(
BSTR v
);
Sets the value of the CSS list-style-position attribute for the element. The attribute determines how the list-item marker is drawn with regard to the content.
| inside |
| outside |
The list-style-position attribute is applicable only on elements that have the display attribute set to "list-item".
See also get_listStylePosition
HRESULT get_listStylePosition(
BSTR *p
);
Retrieves the value of the CSS list-style-position attribute for the element.
| inside |
| outside |
The list-style-position attribute is applicable only on elements that have the display attribute set to "list-item".
See also put_listStylePosition
HRESULT put_listStyleImage(
BSTR v
);
Sets the value of the CSS list-style-image attribute for the element. The attribute sets the image to use as the list-item marker. When the image is available, it replaces the marker.
The list-style-image attribute is applicable only on elements that have the display attribute set to "list-item".
See also get_listStyleImage
HRESULT get_listStyleImage(
BSTR *p
);
Retrieves the value of the CSS list-style-image attribute for the element.
The list-style-image attribute is applicable only on elements that have the display attribute set to "list-item".
See also put_listStyleImage
HRESULT put_listStyle(
BSTR v
);
Sets the value of the CSS list-style attribute for the element. The attribute determines how a list-item marker is drawn.
The list-style attribute is applicable only on elements that have the display attribute set to "list-item". This property can be set on any element and is inherited down the tree. In HTML, this is typically the case for the LI element.
This function combines the functionality of the put_listStyleType, put_listStyleImage, and put_listStylePosition functions.
If no type or position is specified, the default type is "disk" and the default position is "outside".
See also get_listStyle
HRESULT get_listStyle(
BSTR *p
);
Retrieves the value of the CSS list-style attribute for the element.
The list-style attribute is applicable only on elements that have the display attribute set to "list-item".
This function combines the functionality of the get_listStyleType, get_listStyleImage, and get_listStylePosition functions.
See also put_listStyle
HRESULT put_whiteSpace(
BSTR v
);
Sets the CSS white-space attribute for the element. The attribute determines whether and how white-space characters in the element are displayed.
| normal | Consecutive white-space characters are replaced with a single space. |
| nowrap | Linebreak characters are preserved, but consecutive spaces and tab characters are replaced with a single space. |
| pre | All white-space characters (including line breaks) are preserved. |
See also get_whiteSpace
HRESULT get_whiteSpace(
BSTR *p
);
Retrieves the value of the CSS white-space attribute for the element.
| normal | Consecutive white-space characters are replaced with a single space. |
| nowrap | Linebreak characters are preserved, but consecutive spaces and tab characters are replaced with a single space. |
| pre | All white-space characters (including line breaks) are preserved. |
See also put_whiteSpace
HRESULT put_top(
VARIANT v
);
Sets the value of the CSS top attribute for the element. The attribute determines the top position of the element.
See also get_top
HRESULT get_top(
VARIANT *p
);
Retrieves the value of the CSS top attribute for the element.
See also put_top
HRESULT put_left(
VARIANT v
);
Sets the value of the CSS left attribute for the element. The attribute determines the left position of the element.
See also get_left
HRESULT get_left(
VARIANT *p
);
Retrieves the value of the CSS left attribute for the element.
See also put_left
HRESULT get_position(
BSTR *p
);
Retrieves the value of the CSS position attribute for the element. The attribute specifies whether the element can be positioned and, if so, the position of the element relative to its parent object.
| absolute | The element is placed relative to the document. |
| relative | The element is placed relative to its parent object. |
| static | The element cannot be positioned. |
The position attribute is not inherited.
HRESULT put_zIndex(
VARIANT v
);
Sets the value of the CSS z-index attribute for the element. The attribute determines whether the element is positioned above or below the text.
See also get_zIndex
HRESULT get_zIndex(
VARIANT *p
);
Retrieves the value of the CSS z-index attribute for the element.
See also put_zIndex
HRESULT put_overflow(
BSTR v
);
Sets the value of the CSS overflow attribute for the element.
| none |
| clip |
| scroll |
See also get_overflow
HRESULT get_overflow(
BSTR *p
);
Retrieves the value of the CSS overflow attribute for the element.
| none |
| clip |
| scroll |
See also put_overflow
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.