Spread ASP.NET 15
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / SheetCornerStyle Property
Example


In This Topic
    SheetCornerStyle Property
    In This Topic
    Gets or sets the style information for the sheet corner.
    Syntax
    'Declaration
     
    Public Property SheetCornerStyle As StyleInfo
    'Usage
     
    Dim instance As SheetView
    Dim value As StyleInfo
     
    instance.SheetCornerStyle = value
     
    value = instance.SheetCornerStyle
    public StyleInfo SheetCornerStyle {get; set;}

    Property Value

    StyleInfo object containing the style information for the sheet corner
    Example
    This example paints a border around the sheet corner cell.
    FarPoint.Web.Spread.SheetView sv;
    sv = FpSpread1.ActiveSheetView;
    sv.SheetCornerStyle.Border = new FarPoint.Web.Spread.Border(BorderStyle.Double, Color.Red);
    
    Dim sv As FarPoint.Web.Spread.SheetView
    sv = FpSpread1.ActiveSheetView
    sv.SheetCornerStyle.Border = New FarPoint.Web.Spread.Border(BorderStyle.Double, Color.Red)
    See Also