* Function: ng_SetOuterWidth * Sets element outer width. * * Syntax: * void *ng_SetOuterWidth* (object elm, int v) * * Parameters: * elm - object element * v - width in pixels * * Returns: * -
(o,v)
| 1890 | * - |
| 1891 | */ |
| 1892 | function ng_SetOuterWidth(o,v) |
| 1893 | { |
| 1894 | v-=ng_GetCurrentStylePx(o,'margin-left') + ng_GetCurrentStylePx(o,'margin-right'); |
| 1895 | v-=ng_GetCurrentStylePx(o,'border-left-width') + ng_GetCurrentStylePx(o,'border-right-width'); |
| 1896 | v-=ng_GetCurrentStylePx(o,'padding-left') + ng_GetCurrentStylePx(o,'padding-right'); |
| 1897 | ng_SetStyleWidth(o,v); |
| 1898 | } |
| 1899 | |
| 1900 | /** |
| 1901 | * Function: ng_SetOuterHeight |
no test coverage detected