Spread Windows Forms 7.0 Product Documentation
SheetCornerStyleName Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class : SheetCornerStyleName Property


Glossary Item Box

Gets or sets the name of the style for the sheet corner.

Syntax

Visual Basic (Declaration) 
Public Property SheetCornerStyleName As String
Visual Basic (Usage)Copy Code
Dim instance As SheetView
Dim value As String
 
instance.SheetCornerStyleName = value
 
value = instance.SheetCornerStyleName
C# 
public string SheetCornerStyleName {get; set;}

Property Value

String containing the name of the style.

Exceptions

ExceptionDescription
System.ArgumentException Specified NamedStyle object could not be found in the collection

Example

This example sets the name of the default style of the sheet corner.
C#Copy Code
FarPoint.Win.Spread.NamedStyle nstyleheaders = new FarPoint.Win.Spread.NamedStyle("StyleHeaders");
nstyleheaders.BackColor = Color.Red;
nstyleheaders.Parent = "HeaderDefault";
fpSpread1.ActiveSheet.SheetCornerStyle.Parent = "StyleHeaders";
fpSpread1.NamedStyles.Add(nstyleheaders);
fpSpread1.ActiveSheet.SheetCornerStyle = nstyleheaders;
label1.Text = "The name of the sheet corner is " + fpSpread1.ActiveSheet.SheetCornerStyleName;
Visual BasicCopy Code
Dim nstyleheaders As New FarPoint.Win.Spread.NamedStyle("StyleHeaders")
nstyleheaders.BackColor = Color.Red
nstyleheaders.Parent = "HeaderDefault"
FpSpread1.ActiveSheet.SheetCornerStyle.Parent = "StyleHeaders"
FpSpread1.NamedStyles.Add(nstyleheaders)
FpSpread1.ActiveSheet.SheetCornerStyle = nstyleheaders
Label1.Text = "The name of the sheet corner is " & FpSpread1.ActiveSheet.SheetCornerStyleName

Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.