Spread for ASP.NET 9.0 Product Documentation
SheetCornerStyleName Property
Example 


Gets or sets the name of the style for the sheet corner.
Syntax
'Declaration
 
Public Property SheetCornerStyleName As String
'Usage
 
Dim instance As SheetView
Dim value As String
 
instance.SheetCornerStyleName = value
 
value = instance.SheetCornerStyleName
public string SheetCornerStyleName {get; set;}

Property Value

String containing the name of the style for the sheet corner
Example
This example paints the sheet corner cell red.
FarPoint.Web.Spread.SheetView sv;
FarPoint.Web.Spread.NamedStyle ns = nw FarPoint.Web.Spread.NamedStyle();
ns.BackColor = Color.Red;
ns.Name = "mystyle";
FpSpread1.NamedStyles.Add(ns);
sv = FpSpread1.ActiveSheetView;
sv.SheetCornerStyleName = ns.Name;
Dim sv As FarPoint.Web.Spread.SheetView
Dim ns As New FarPoint.Web.Spread.NamedStyle
ns.BackColor = Color.Red
ns.Name = "mystyle"
FpSpread1.NamedStyles.Add(ns)
sv = FpSpread1.ActiveSheetView
sv.SheetCornerStyleName = ns.Name
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

SheetView Class
SheetView Members

User-Task Documentation

Customizing the Sheet Corner

 

 


Copyright © GrapeCity, inc. All rights reserved.