* Function: ng_SetClientHeight * Sets element client height. * * Syntax: * void *ng_SetClientHeight* (object elm, int v) * * Parameters: * elm - object element * v - height in pixels * * Returns: * -
(o,v)
| 2016 | * - |
| 2017 | */ |
| 2018 | function ng_SetClientHeight(o,v) |
| 2019 | { |
| 2020 | v-=ng_GetCurrentStylePx(o,'padding-top') + ng_GetCurrentStylePx(o,'padding-bottom'); |
| 2021 | ng_SetStyleHeight(o,v); |
| 2022 | } |
| 2023 | |
| 2024 | /** |
| 2025 | * Function: ng_setLeftTop |
no test coverage detected