* Function: ng_SetOuterHeight * Sets element outer height. * * Syntax: * void *ng_SetOuterHeight* (object elm, int v) * * Parameters: * elm - object element * v - height in pixels * * Returns: * -
(o,v)
| 1912 | * - |
| 1913 | */ |
| 1914 | function ng_SetOuterHeight(o,v) |
| 1915 | { |
| 1916 | v-=ng_GetCurrentStylePx(o,'margin-top') + ng_GetCurrentStylePx(o,'margin-bottom'); |
| 1917 | v-=ng_GetCurrentStylePx(o,'border-top-width') + ng_GetCurrentStylePx(o,'border-bottom-width'); |
| 1918 | v-=ng_GetCurrentStylePx(o,'padding-top') + ng_GetCurrentStylePx(o,'padding-bottom'); |
| 1919 | ng_SetStyleHeight(o,v); |
| 1920 | } |
| 1921 | |
| 1922 | /** |
| 1923 | * Function: ng_ClientWidth |
no test coverage detected