IHTMLRuleStyle::get_textTransformIHTMLRuleStyle::get_textTransform*
*



Contents  *



Index  *Topic Contents
*Previous Topic: IHTMLRuleStyle::put_textTransform
*Next Topic: IHTMLRuleStyle::put_textAlign

IHTMLRuleStyle::get_textTransform


HRESULT get_textTransform(
    BSTR *p 
);

Retrieves the value of the CSS text-transform attribute for the element.

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

Up Top of Page


IHTMLRuleStyle::put_textTransform


HRESULT put_textTransform(
    BSTR v 
);

Sets the value of the CSS text-transform attribute for the element.

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


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