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


Glossary Item Box

Gets or sets the horizontal grid line for this sheet.

Syntax

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

Property Value

GridLine object containing the grid lines in the data area

Exceptions

ExceptionDescription
System.ArgumentNullException No value is specified (specified value is null)

Example

This example changes the look of the grid lines.
C#Copy Code
FarPoint.Win.Spread.GridLine gl = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.Raised, Color.Red);
fpSpread1.ActiveSheet.HorizontalGridLine = gl;
fpSpread1.ActiveSheet.VerticalGridLine = gl;
Visual BasicCopy Code
Dim gl As New FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.Raised, Color.Red)
FpSpread1.ActiveSheet.HorizontalGridLine = gl
FpSpread1.ActiveSheet.VerticalGridLine = gl

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.