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


Glossary Item Box

Gets or sets the mode of the linear gradient.

Syntax

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

Property Value

LinearGradientMode setting that specifies the direction of the linear gradient

Example

This example sets a gradient header.
C#Copy Code
FarPoint.Win.Spread.CellType.GradientHeaderRenderer gc = new FarPoint.Win.Spread.CellType.GradientHeaderRenderer();
gc.BottomColor = Color.Orange;
gc.TopColor = Color.Red;
gc.Mode = Drawing2D.LinearGradientMode.ForwardDiagonal;
fpSpread1.ActiveSheet.ColumnHeader.Rows[0].Renderer = gc
Visual BasicCopy Code
Dim gc As New FarPoint.Win.Spread.CellType.GradientHeaderRenderer
gc.BottomColor = Color.Orange
gc.TopColor = Color.Red
gc.Mode = Drawing2D.LinearGradientMode.ForwardDiagonal
FpSpread1.ActiveSheet.ColumnHeader.Rows(0).Renderer = gc

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.