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


Glossary Item Box

Gets or sets whether adjacent cell borders are collapsed into a single line in the view.

Syntax

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

Property Value

BorderCollapse setting specifying how to collapse borders

Example

This example sets the BorderCollapse property.
C#Copy Code
FarPoint.Win.Spread.SpreadView sv;
sv = fpSpread1.GetRootWorkbook();
sv.Sheets[0].Cells[0, 0, 20, 20].Border = new FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Raised, Color.Teal, Color.LightBlue,
2);
sv.BorderCollapse = FarPoint.Win.Spread.BorderCollapse.Collapse;
VB.NETCopy Code
Dim sv As FarPoint.Win.Spread.SpreadView
sv = FpSpread1.GetRootWorkbook()
sv.Sheets(0).Cells(0, 0, 20, 20).Border = New FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Raised, Color.Teal, Color.LightBlue,
2)
sv.BorderCollapse = FarPoint.Win.Spread.BorderCollapse.Collapse

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.