Spread Windows Forms 7.0 Product Documentation
Color1 Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > GradientSelectionRenderer Class : Color1 Property


Glossary Item Box

Gets or sets the first color of a two-color gradient.

Syntax

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

Property Value

Color object containing the first color of a two-color gradient or the only color of a one-color gradient

Example

This example customizes the selection renderer.
C#Copy Code
FarPoint.Win.Spread.GradientSelectionRenderer gsr = new FarPoint.Win.Spread.GradientSelectionRenderer();
gsr.Color1 = Color.Green;
gsr.Color2 = Color.LightGreen;
gsr.LinearGradientMode = Drawing2D.LinearGradientMode.BackwardDiagonal;
gsr.Opacity = 50;
fpSpread1.SelectionRenderer = gsr;
Visual BasicCopy Code
Dim gsr As New FarPoint.Win.Spread.GradientSelectionRenderer
gsr.Color1 = Color.Green
gsr.Color2 = Color.LightGreen
gsr.LinearGradientMode = Drawing2D.LinearGradientMode.BackwardDiagonal
gsr.Opacity = 50
FpSpread1.SelectionRenderer = gsr

Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

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