* Function: ng_GetCurrentStylePx * Extracts pixels value from current (computed) style of element. * * Syntax: * int *ng_GetCurrentStylePx* (object elm, string style) * * Parameters: * elm - object element * style - name of the style, for example 'margin-right' * *
(o,s)
| 1745 | * |
| 1746 | */ |
| 1747 | function ng_GetCurrentStylePx(o,s) |
| 1748 | { |
| 1749 | return ng_GetStylePx(ng_GetCurrentStyle(o,s)); |
| 1750 | } |
| 1751 | |
| 1752 | /** |
| 1753 | * Function: ng_StyleWidth |
no test coverage detected