Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetSkin Class / GridLines Property
Example


In This Topic
    GridLines Property (SheetSkin)
    In This Topic
    Gets which grid lines are displayed on the sheet.
    Syntax
    'Declaration
     
    
    Public ReadOnly Property GridLines As GridLines
    'Usage
     
    
    Dim instance As SheetSkin
    Dim value As GridLines
     
    value = instance.GridLines
    public GridLines GridLines {get;}

    Property Value

    GridLines setting that determines which grid lines are displayed
    Remarks

    This property uses the GridLines enumeration. The possible values are:

    • Both - Displays both horizontal and vertical grid lines
    • Horizontal - Displays only horizontal grid lines
    • Vertical - Displays only vertical grid lines
    • None - Displays no grid lines

    For more information about the GridLines enumeration, refer to the .NET Framework Reference.

    To specify the color of the grid lines, set the GridLineColor property.

    Example
    This example shows the use of the property by returning all the properties for the skin.
    See Also