* Function: ng_OuterWidth * Gets element outer width. * * Syntax: * int *ng_OuterWidth* (object elm) * * Parameters: * elm - object element * * Returns: * Width in pixels.
(o)
| 1839 | * Width in pixels. |
| 1840 | */ |
| 1841 | function ng_OuterWidth(o) |
| 1842 | { |
| 1843 | var w=ng_GetStylePx(o.offsetWidth); |
| 1844 | if(!w) |
| 1845 | { |
| 1846 | ng_BeginMeasureElement(o); |
| 1847 | w=ng_GetStylePx(o.offsetWidth); |
| 1848 | ng_EndMeasureElement(o); |
| 1849 | } |
| 1850 | return w + ng_GetCurrentStylePx(o,'margin-left') + ng_GetCurrentStylePx(o,'margin-right'); |
| 1851 | } |
| 1852 | |
| 1853 | /** |
| 1854 | * Function: ng_OuterHeight |
no test coverage detected