Gets or sets the style information for the sheet corner.
            
            
            
Syntax
| Visual Basic (Declaration) |   | 
|---|
Public Property SheetCornerStyle As StyleInfo  | 
 
| Visual Basic (Usage) |  Copy Code | 
|---|
Dim instance As SheetView
Dim value As StyleInfo
 
instance.SheetCornerStyle = value
 
value = instance.SheetCornerStyle  | 
 
| C# |   | 
|---|
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.
             
| C# |  Copy Code | 
|---|
FarPoint.Web.Spread.SheetView sv;
sv = FpSpread1.ActiveSheetView;
sv.SheetCornerStyle.Border = new FarPoint.Web.Spread.Border(BorderStyle.Double, Color.Red);
  | 
 
| Visual Basic |  Copy Code | 
|---|
Dim sv As FarPoint.Web.Spread.SheetView
sv = FpSpread1.ActiveSheetView
sv.SheetCornerStyle.Border = New FarPoint.Web.Spread.Border(BorderStyle.Double, Color.Red)  | 
 
 
            
            
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
 
            
            
See Also