Spread Windows Forms 10.0 Product Documentation
GridLine Constructor(GridLineType,Color)
Example 


Type of grid line
Color of grid line
Creates a new grid line of the specified line type and color.
Syntax
'Declaration
 
Public Function New( _
   ByVal type As GridLineType, _
   ByVal color As Color _
)
'Usage
 
Dim type As GridLineType
Dim color As Color
 
Dim instance As New GridLine(type, color)
public GridLine( 
   GridLineType type,
   Color color
)

Parameters

type
Type of grid line
color
Color of grid line
Remarks
The flat style grid line uses the Color property. The raised and lowered style grid lines use the HighlightColor and ShadowColor properties.
Example
This example sets the type and color of grid line to use for the horizontal grid line.
FarPoint.Win.Spread.GridLine gl = new FarPoint.Win.Spread.GridLine(GridLineType.Flat, Color.Blue);
fpSpread1.ActiveSheet.HorizontalGridLine = gl;
textBox1.Text = fpSpread1.ActiveSheet.HorizontalGridLine.Type.ToString();
Dim gl As New FarPoint.Win.Spread.GridLine(GridLineType.Flat, Color.Blue)
FpSpread1.ActiveSheet.HorizontalGridLine = gl
TextBox1.Text = FpSpread1.ActiveSheet.HorizontalGridLine.Type.ToString()
Requirements

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

See Also

Reference

GridLine Class
GridLine Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.