* Function: ng_StyleWidth * Gets element width defined by style property. * * Syntax: * int *ng_StyleWidth* (object elm) * * Parameters: * elm - object element * * Returns: * Width in pixels.
(o)
| 1763 | * Width in pixels. |
| 1764 | */ |
| 1765 | function ng_StyleWidth(o) |
| 1766 | { |
| 1767 | return (typeof o.style.pixelWidth !== 'undefined' ? ng_GetStylePx(o.style.pixelWidth) : ng_GetStylePx(o.style.width)); |
| 1768 | } |
| 1769 | |
| 1770 | /** |
| 1771 | * Function: ng_StyleHeight |
no test coverage detected