Spread Windows Forms 9.0 Product Documentation
Type Property (GridLine)
Example 


Gets whether to display the grid lines and the type of grid lines to display.
Syntax
'Declaration
 
Public ReadOnly Property Type As GridLineType
'Usage
 
Dim instance As GridLine
Dim value As GridLineType
 
value = instance.Type
public GridLineType Type {get;}

Property Value

GridLineType setting that specifies the line type for the grid line
Example
This example illustrates the use of this member by returning the type of the horizontal grid line.
FarPoint.Win.Spread.GridLine gl = new FarPoint.Win.Spread.GridLine(GridLineType.Raised, Color.Blue, Color.DarkBlue, Color.LightBlue, 2);
fpSpread1.ActiveSheet.HorizontalGridLine = gl;
textBox1.Text = fpSpread1.ActiveSheet.HorizontalGridLine.Type.ToString();
Dim gl As New FarPoint.Win.Spread.GridLine(GridLineType.Raised, Color.Blue, Color.DarkBlue, Color.LightBlue, 2)
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
GridLineType Enum

User-Task Documentation

Displaying Grid Lines

 

 


Copyright © GrapeCity, inc. All rights reserved.