Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

getComputedStyle method

Returns a currentStyle object containing the Cascading Style Sheets (CSS) settings that are applied to the specified element or a pseudo-element related to the specified element.

Document Object Model (DOM) Level 2 Style Specification, Section 2.2.1Internet Explorer 9

 

Syntax


HRESULT retVal = object.getComputedStyle(varArgIn, bstrPseudoElt, ppComputedStyle);

Parameters

varArgIn [in]

Type: IHTMLDOMNode

The element that contains the desired style settings.

bstrPseudoElt [in]

Type: BSTR

The name of a CSS pseudo-element or a NULL value.

ppComputedStyle [out, retval]

Type: IHTMLW3CComputedStyle

A currentStyle object that contains the CSS settings applied to the desired object.

The settings in the ppComputedStyle object account for all applicable style rules and represent the final values for the various CSS properties applied to the specified object.

Return value

Type: HRESULT

If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.

Standards information

Remarks

When the bstrPseudoElt is set to a value other than NULL, the value is interpreted as a CSS pseudo-element with respect to the object specified in the varArgIn parameter.

 

 

Show:
© 2017 Microsoft