Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / SpreadView Class / BorderCollapse Property
Example


In This Topic
    BorderCollapse Property (SpreadView)
    In This Topic
    Gets or sets whether adjacent cell borders are collapsed into a single line in the view.
    Syntax
    'Declaration
     
    Public Property BorderCollapse As BorderCollapse
    'Usage
     
    Dim instance As SpreadView
    Dim value As BorderCollapse
     
    instance.BorderCollapse = value
     
    value = instance.BorderCollapse
    public BorderCollapse BorderCollapse {get; set;}

    Property Value

    BorderCollapse setting specifying how to collapse borders
    Example
    This example sets the BorderCollapse property.
    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;
    
    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
    
    See Also