Spread Windows Forms 12.0 Product Documentation
Font Property (SheetTab)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetTab Class : Font Property
Gets or sets the font for the sheet name in the sheet name tab.
Syntax
'Declaration
 
Public Property Font As Font
'Usage
 
Dim instance As SheetTab
Dim value As Font
 
instance.Font = value
 
value = instance.Font
public Font Font {get; set;}

Property Value

Font object containing the font settings
Remarks

If you increase the font size in the sheet tabs larger than the default, you might want to use the HorizontalScrollBarHeight property to change the height of the tab strip.

Example
This example changes the font of the active sheet tab.
FarPoint.Win.Spread.SheetTab st; 
st = fpSpread1.TabStrip.ActiveSheetTab; 
st.Font = new Font("Comic Sans MS", 12); 
Dim st As FarPoint.Win.Spread.SheetTab
st = FpSpread1.TabStrip.ActiveSheetTab
st.Font = New Font("Comic Sans MS", 12)
See Also

Reference

SheetTab Class
SheetTab Members