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 sets the background color of the sheet corner.
C# | Copy Code |
---|
fpSpread1.ActiveSheet.SheetCornerStyle.BackColor = Color.Blue; |
Visual Basic | Copy Code |
---|
FpSpread1.ActiveSheet.SheetCornerStyle.BackColor = Color.Blue |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also