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


Glossary Item Box

Gets or sets the vertical grid line in the column header for the sheet.

Syntax

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

Property Value

GridLine object containing the grid lines in the column header

Exceptions

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

Remarks

This property is available at run time only.

This property is equivalent to the ColumnHeader.VerticalGridLine property.

Set the ColumnHeaderHorizontalGridLine property to customize the display of the horizontal grid line in the column headers.

Example

This example sets the horizontal and vertical grid lines in the headers to a different color and type.
C#Copy Code
fpSpread1.ActiveSheet.ColumnHeaderRowCount = 3;
fpSpread1.ActiveSheet.ColumnHeaderHorizontalGridLine = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.Flat,
Color.Blue);
fpSpread1.ActiveSheet.ColumnHeaderVerticalGridLine = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.Flat,
Color.Blue);
Visual BasicCopy Code
FpSpread1.ActiveSheet.ColumnHeaderRowCount = 3
FpSpread1.ActiveSheet.ColumnHeaderHorizontalGridLine = New FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.Flat,
Color.Blue)
FpSpread1.ActiveSheet.ColumnHeaderVerticalGridLine = New FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.Flat,
Color.Blue)

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.