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;} |
Return 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 |
See Also