Spread Windows Forms 12.0 Product Documentation
SelectionFont Property (SheetView)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class : SelectionFont Property
Gets or sets the default font for selected items on this sheet.
Syntax
'Declaration
 
Public Property SelectionFont As Font
'Usage
 
Dim instance As SheetView
Dim value As Font
 
instance.SelectionFont = value
 
value = instance.SelectionFont
public Font SelectionFont {get; set;}
Example
This example sets the SelectionFont property.
fpSpread1.Sheets[0].Cells[1, 1].Locked = true;
fpSpread1.Sheets[0].Cells[1, 1].Value = "test";
fpSpread1.Sheets[0].Cells[1, 0].Value = "test";
fpSpread1.Sheets[0].NullBackColor = Color.Red;
fpSpread1.Sheets[0].NullFont = new Font("Arial", 12);
fpSpread1.Sheets[0].NullForeColor = Color.Black;
fpSpread1.Sheets[0].LockFont = new Font("Comic Sans MS", 12);
fpSpread1.Sheets[0].LockForeColor = Color.Crimson;
fpSpread1.Sheets[0].SelectionFont = new Font("Comic Sans MS", 12);
FpSpread1.Sheets(0).Cells(1, 1).Locked = True
FpSpread1.Sheets(0).Cells(1, 1).Value = "test"
FpSpread1.Sheets(0).Cells(1, 0).Value = "test"
FpSpread1.Sheets(0).NullBackColor = Color.Red
FpSpread1.Sheets(0).NullFont = New Font("Arial", 12)
FpSpread1.Sheets(0).NullForeColor = Color.Black
FpSpread1.Sheets(0).LockFont = New Font("Comic Sans MS", 12)
FpSpread1.Sheets(0).LockForeColor = Color.Crimson
FpSpread1.Sheets(0).SelectionFont = New Font("Comic Sans MS", 12)
See Also

Reference

SheetView Class
SheetView Members