Spread Windows Forms 6.0 Product Documentation
ButtonHoveredBackgroundColor Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > EnhancedScrollBarRenderer Class : ButtonHoveredBackgroundColor Property


Glossary Item Box

Gets or sets the color of the button hovered background.

Syntax

Visual Basic (Declaration) 
Public Property ButtonHoveredBackgroundColor As Color
Visual Basic (Usage)Copy Code
Dim instance As EnhancedScrollBarRenderer
Dim value As Color
 
instance.ButtonHoveredBackgroundColor = value
 
value = instance.ButtonHoveredBackgroundColor
C# 
public Color ButtonHoveredBackgroundColor {get; set;}

Property Value

The color of the button hovered background.

Example

This example customizes the scrollbar.
C#Copy Code
FarPoint.Win.Spread.EnhancedScrollBarRenderer r = new FarPoint.Win.Spread.EnhancedScrollBarRenderer();
r.ArrowColor = Color.Red;
r.ArrowHoveredColor = Color.Orange;
r.ArrowSelectedColor = Color.DarkRed;
r.ButtonBackgroundColor = Color.Crimson;
r.ButtonBorderColor = Color.Azure;
r.ButtonHoveredBackgroundColor = Color.DarkSalmon;
r.ButtonHoveredBorderColor = Color.Tomato;
r.ButtonSelectedBackgroundColor = Color.Thistle;
r.ButtonSelectedBorderColor = Color.Tomato;
r.TrackBarBackgroundColor = Color.White;
r.TrackBarSelectedBackgroundColor = Color.IndianRed;
FarPoint.Win.Spread.SpreadSkin SpreadSkin = new FarPoint.Win.Spread.SpreadSkin(fpSpread1.Skin);
SpreadSkin.ScrollBarRenderer = r;
SpreadSkin.Apply(fpSpread1);
Visual BasicCopy Code
Dim r As New FarPoint.Win.Spread.EnhancedScrollBarRenderer
r.ArrowColor = Color.Red
r.ArrowHoveredColor = Color.Orange
r.ArrowSelectedColor = Color.DarkRed
r.ButtonBackgroundColor = Color.Crimson
r.ButtonBorderColor = Color.Azure
r.ButtonHoveredBackgroundColor = Color.DarkSalmon
r.ButtonHoveredBorderColor = Color.Tomato
r.ButtonSelectedBackgroundColor = Color.Thistle
r.ButtonSelectedBorderColor = Color.Tomato
r.TrackBarBackgroundColor = Color.White
r.TrackBarSelectedBackgroundColor = Color.IndianRed
Dim SpreadSkin = New FarPoint.Win.Spread.SpreadSkin(FpSpread1.Skin)
SpreadSkin.ScrollBarRenderer = r
SpreadSkin.Apply(FpSpread1)

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.