Contents Index Topic Contents | ||
Previous Topic: IHTMLStyle::get_textIndent Next Topic: IHTMLStyle::get_top |
IHTMLStyle::get_textTransform
HRESULT get_textTransform( BSTR *p );Retrieves the value of the CSS text-transform attribute for the element.
- Returns S_OK if successful, or an error value otherwise.
- p
- Address of a variable that receives the value of the attribute, which can be one of these strings:
capitalize First letter in the text is capitalized. lowercase All letters in the text are converted to lowercase. uppercase All letters in the text are converted to uppercase. - See text-transform for details. This parameter receives NULL if the attribute is not set.
See also put_textTransform
IHTMLStyle::put_textTransform
HRESULT put_textTransform( BSTR v );Sets the value of the CSS text-transform attribute for the element.
- Returns S_OK if successful, or an error value otherwise.
- v
- String specifying the text transformation, or NULL to remove the attribute. Can be one of these strings:
capitalize First letter in the text is capitalized. lowercase All letters in the text are converted to lowercase. uppercase All letters in the text are converted to uppercase. - See text-transform for details.
See also get_textTransform
Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.