Magazine |
| | Community |
| | Workshop |
| | Tools & Samples |
| | Training |
| | Site Info |
|
|
||||||||
|
Retrieves the value of the cascading style sheet (CSS) backgroundRepeat property for the object.
Syntax
HRESULT get_backgroundRepeat( BSTR *p );
Parameters
- p
- Address of a variable that receives the value of the property, which can be one of these strings:
norepeat Do not repeat. repeaty Repeat vertically. repeat Repeat both horizontally and vertically. repeatx Repeat horizontally. - See backgroundRepeat for details. This parameter receives NULL if the property is not set.
Return Value
Returns S_OK if successful, or an error value otherwise.
See Also
put_backgroundRepeat
Sets the value of the cascading style sheet (CSS) backgroundRepeat property for the object. The property determines whether and how the background image, if any, is repeated.
Syntax
HRESULT put_backgroundRepeat( BSTR v );
Parameters
- v
- String specifying whether and how the image is repeated, or NULL to remove the property. Can be one of these strings:
norepeat Do not repeat. repeaty Repeat vertically. repeat Repeat both horizontally and vertically. repeatx Repeat horizontally. - See backgroundRepeat for details.
Return Value
Returns S_OK if successful, or an error value otherwise.
See Also
get_backgroundRepeat
Does this content meet your programming needs? Write us!
© 1998 Microsoft Corporation. All rights reserved. Terms of use.