scrollbarArrowColor property
Specifies the color of the arrow elements of a scroll arrow.
Syntax
HRESULT value = object.put_scrollbarArrowColor( v);HRESULT value = object.get_scrollbarArrowColor(* p);
Property values
Type: VARIANT
Any color name or RGB values in the Color Table.
String format
variant
CSS information
Applies To | All elements |
Media | visual |
Inherited | 1 |
Initial Value | Default color |
Standards information
There are no standards that apply here.
Remarks
Windows Internet Explorer 8. The -ms-scrollbar-arrow-color attribute is an extension to CSS, and can be used as a synonym for IHTMLRuleStyle3::scrollbarArrowColor in IE8 Standards mode.
The scroll arrows, located at each end of a scroll bar, are the square buttons containing the arrows that move the content on the screen in small increments, either up and down or left and right.
This property applies to elements that display a scroll bar. Cascading Style Sheets (CSS) enable scrolling on all objects through the IHTMLRuleStyle::overflow property. These objects are not listed in the Applies To list for this property.
Examples
The following example shows how to use IHTMLRuleStyle3::scrollbarArrowColor and IHTMLRuleStyle3::scrollbarFaceColor to display a scroll bar with a blue scroll box and arrows, and a scroll bar with a green scroll box and arrows.
div {
width: 150px;
height: 150px;
overflow-y: scroll;
border-style: solid;
border-width: thin;
font-family: sans-serif;
float: left;
margin-right: 10px;
}
.blueScrollBox {
scrollbar-face-color: blue;
scrollbar-arrow-color: blue;
}
.greenScrollBox {
scrollbar-face-color: green;
scrollbar-arrow-color: green;
}
<body>
<div class="blueScrollBox">
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
</div>
<div class="greenScrollBox">
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
</div>
</body>
The following image shows the result:
Requirements
Minimum supported client |
Windows XP |
Minimum supported server |
Windows 2000 Server |
Header |
Mshtml.h |
IDL |
Mshtml.idl |
DLL |
Mshtml.dll |
See also
Reference
IHTMLRuleStyle3::scrollbar3dLightColor
IHTMLRuleStyle3::scrollbarBaseColor
IHTMLRuleStyle3::scrollbarDarkShadowColor
IHTMLRuleStyle3::scrollbarFaceColor
IHTMLRuleStyle3::scrollbarHighlightColor