Spread Windows Forms 12.0 Product Documentation
HeaderFontBold Property
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetSkin Class : HeaderFontBold Property
Gets whether the font is bold for text in headers in the sheet.
Syntax
'Declaration
 
Public ReadOnly Property HeaderFontBold As Boolean
'Usage
 
Dim instance As SheetSkin
Dim value As Boolean
 
value = instance.HeaderFontBold
public bool HeaderFontBold {get;}

Property Value

Boolean: true if the header font is bold; false otherwise
Example
This example shows the use of the property by returning all the properties for the skin.
FarPoint.Win.Spread.SheetSkin skin = new FarPoint.Win.Spread.SheetSkin("TestSkin", Color.White, Color.DarkGray, Color.Black,
Color.Blue, FarPoint.Win.Spread.GridLines.Both, Color.Blue, Color.Red, Color.White, Color.Black, Color.LightGray, Color.Gray,
false, false, true, true, true);
skin.Apply(fpSpread1);
listBox1.Items.Add(skin.BackColor.ToString());
listBox1.Items.Add(skin.CellBackColor.ToString());
listBox1.Items.Add(skin.CellForeColor.ToString());
listBox1.Items.Add(skin.EvenRowBackColor.ToString());
listBox1.Items.Add(skin.FlatColumnHeader.ToString());
listBox1.Items.Add(skin.FlatRowHeader.ToString());
listBox1.Items.Add(skin.GridLineColor.ToString()); 
listBox1.Items.Add(skin.GridLines.ToString());
listBox1.Items.Add(skin.HeaderBackColor.ToString());
listBox1.Items.Add(skin.HeaderFontBold.ToString()); 
listBox1.Items.Add(skin.HeaderForeColor.ToString());
listBox1.Items.Add(skin.Name.ToString());
listBox1.Items.Add(skin.OddRowBackColor.ToString()); 
listBox1.Items.Add(skin.SelectionBackColor.ToString());
listBox1.Items.Add(skin.SelectionForeColor.ToString());
listBox1.Items.Add(skin.ShowColumnHeader.ToString());
listBox1.Items.Add(skin.ShowRowHeader.ToString());
Dim skin As New FarPoint.Win.Spread.SheetSkin("TestSkin", Color.White, Color.DarkGray, Color.Black, Color.Blue, FarPoint.Win.Spread.GridLines.Both,
Color.Blue, Color.Red, Color.White, Color.Black, Color.LightGray, Color.Gray, False, False, True, True, True)
skin.Apply(FpSpread1)
ListBox1.Items.Add(skin.BackColor.ToString())
ListBox1.Items.Add(skin.CellBackColor.ToString())
ListBox1.Items.Add(skin.CellForeColor.ToString())
ListBox1.Items.Add(skin.EvenRowBackColor.ToString())
ListBox1.Items.Add(skin.FlatColumnHeader.ToString())
ListBox1.Items.Add(skin.FlatRowHeader.ToString())
ListBox1.Items.Add(skin.GridLineColor.ToString())
ListBox1.Items.Add(skin.GridLines.ToString())
ListBox1.Items.Add(skin.HeaderBackColor.ToString())
ListBox1.Items.Add(skin.HeaderFontBold.ToString())
ListBox1.Items.Add(skin.HeaderForeColor.ToString())
ListBox1.Items.Add(skin.Name.ToString())
ListBox1.Items.Add(skin.OddRowBackColor.ToString())
ListBox1.Items.Add(skin.SelectionBackColor.ToString())
ListBox1.Items.Add(skin.SelectionForeColor.ToString())
ListBox1.Items.Add(skin.ShowColumnHeader.ToString())
ListBox1.Items.Add(skin.ShowRowHeader.ToString())
See Also

Reference

SheetSkin Class
SheetSkin Members