MCPcopy Create free account
hub / github.com/controlsjs/controls.js / ng_OuterHeight

Function ng_OuterHeight

src/ng_basic/basic.js:1866–1876  ·  view source on GitHub ↗

* Function: ng_OuterHeight * Gets element outer height. * * Syntax: * int *ng_OuterHeight* (object elm) * * Parameters: * elm - object element * * Returns: * Height in pixels.

(o)

Source from the content-addressed store, hash-verified

1864 * Height in pixels.
1865 */
1866function ng_OuterHeight(o)
1867{
1868 var h=ng_GetStylePx(o.offsetHeight);
1869 if(!h)
1870 {
1871 ng_BeginMeasureElement(o);
1872 h=ng_GetStylePx(o.offsetHeight);
1873 ng_EndMeasureElement(o);
1874 }
1875 return h + ng_GetCurrentStylePx(o,'margin-top') + ng_GetCurrentStylePx(o,'margin-bottom');
1876}
1877
1878/**
1879 * Function: ng_SetOuterWidth

Callers 15

wedlgbx_CalcAutoSizeFunction · 0.85
npgl_DoUpdateBeforeFunction · 0.85
npgl_OnDrawItemFunction · 0.85
npgl_UpdatePagingFunction · 0.85
ngmn_DoPopupFunction · 0.85
ngmn_PopupFunction · 0.85
ngmn_PopupCtrlFunction · 0.85
ngmn_PopupSubMenuFunction · 0.85
ngap_UpdateFunction · 0.85
ngdp_DoUpdateFunction · 0.85
ngdp_SetBoundsFunction · 0.85
ngdp_SetClientRectFunction · 0.85

Calls 4

ng_GetStylePxFunction · 0.85
ng_BeginMeasureElementFunction · 0.85
ng_EndMeasureElementFunction · 0.85
ng_GetCurrentStylePxFunction · 0.85

Tested by

no test coverage detected