Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / GridLineColor Property
Example


In This Topic
    GridLineColor Property (SheetView)
    In This Topic
    Gets or sets the color of the grid lines in the sheet.
    Syntax
    'Declaration
     
    
    Public Property GridLineColor As Color
    'Usage
     
    
    Dim instance As SheetView
    Dim value As Color
     
    instance.GridLineColor = value
     
    value = instance.GridLineColor
    public Color GridLineColor {get; set;}

    Property Value

    Color object containing the color of the grid line
    Remarks

    To set whether the sheet displays horizontal grid lines, vertical grid lines, or both, use the GridLines property.

    This property does not have an effect if the GridLines property is set to None.

    Example
    This example changes the color and configuration of the gridlines in the SheetView object.
    FarPoint.Web.Spread.SheetView sv=FpSpread1.ActiveSheetView;
    sv.GridLines=GridLines.Horizontal;
    sv.GridLineColor=Color.Red;
    Dim sv As FarPoint.Web.Spread.SheetView
    sv=FpSpread1.ActiveSheetView
    sv.GridLines=GridLines.Horizontal
    sv.GridLineColor=Color.Red
    See Also