pixelWidth
Summary
Changes the value of the width without changing the units designator.
Property of css/cssom/propertiescss/cssom/properties
Syntax
var result = element.pixelWidth; element.pixelWidth = value;
Examples
This example uses a timer to increment the pixelWidth property.
<SCRIPT> function scaleThis() { if (sphere.style.pixelWidth <900) { sphere.style.pixelWidth += 4; sphere.style.pixelHeight +=4; window.setTimeout("scaleThis();", 1); } } : </SCRIPT>
Notes
Remarks
Setting this property changes the value of the width without changing the units designator. Unlike the width property, the pixelWidth value is an integer, not a string, and is always interpreted in pixels.
See also
Related pages
- runtimeStyleruntimeStyle
- stylestyle
- posWidthposWidth
Attributions
Microsoft Developer Network: [Windows Internet Explorer API reference Article]