* Function: ng_SetClientWidth * Sets element client width. * * Syntax: * void *ng_SetClientWidth* (object elm, int v) * * Parameters: * elm - object element * v - width in pixels * * Returns: * -
(o,v)
| 1996 | * - |
| 1997 | */ |
| 1998 | function ng_SetClientWidth(o,v) |
| 1999 | { |
| 2000 | v-=ng_GetCurrentStylePx(o,'padding-left') + ng_GetCurrentStylePx(o,'padding-right'); |
| 2001 | ng_SetStyleWidth(o,v); |
| 2002 | } |
| 2003 | |
| 2004 | /** |
| 2005 | * Function: ng_SetClientHeight |
no test coverage detected