|
home / documentation / reference / scrollbarheight
ScrollBarHeight
- Description:
- The height of the menu's scroll bars, in pixels.
- Value:
- Integer, or JavaScript expression that returns an integer.
Negative integers are not allowed.
- Applies To:
- Menus.
- Browser Compatibility:
- ScrollBarHeight is supported in all browsers.
- Comments:
- You must always specify ScrollBarHeight as an integer,
or a JavaScript expression that returns an integer. Do not use quoted strings
or non-numerical characters when defining ScrollBarHeight.
ScrollBarHeight is always interpreted by HM in pixels.

- Examples:
// Ok:
ScrollBarHeight:30,
ScrollBarHeight:60,
ScrollBarHeight:(HM_Mac)?40:50,
// 40 in Mac, 50 all others
// Incorrect:
ScrollBarHeight:"20",
ScrollBarHeight:40px,
ScrollBarHeight:"(HM_Mac)?40:50",
// do not quote expressions here
- Default:
- 16
- See Also:
-
ScrollEnabled,
ScrollOver,
ScrollInterval,
ScrollBarColor,
ScrollImgAltTop,
ScrollImgSrcTop,
ScrollImgAltBot,
ScrollImgSrcBot,
ScrollImgWidth,
ScrollImgHeight,
ScrollBothBars,
ScrollHeightMin
|