* Function: ng_StyleHeight * Gets element height defined by style property. * * Syntax: * int *ng_StyleHeight* (object elm) * * Parameters: * elm - object element * * Returns: * Height in pixels.
(o)
| 1781 | * Height in pixels. |
| 1782 | */ |
| 1783 | function ng_StyleHeight(o) |
| 1784 | { |
| 1785 | return (typeof o.style.pixelHeight !== 'undefined' ? ng_GetStylePx(o.style.pixelHeight) : ng_GetStylePx(o.style.height)); |
| 1786 | } |
| 1787 | |
| 1788 | /** |
| 1789 | * Function: ng_SetStyleWidth |
no test coverage detected