Spread Windows Forms 11.0 Product Documentation
ResetFont Method (StyleInfo)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > StyleInfo Class : ResetFont Method
Syntax
'Declaration
 
Public Overridable Sub ResetFont() 
'Usage
 
Dim instance As StyleInfo
 
instance.ResetFont()
public virtual void ResetFont()
Remarks
By default, the Font property is not set. Resetting the property returns it to the not set state.
Example
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo();
DialogResult dlg;
si.Font = new Font("Comic Sans MS", 12);
fpSpread1.ActiveSheet.DefaultStyle = si;
dlg = MessageBox.Show("Reset the font?");
if (dlg == DialogResult.OK)
{
si.ResetFont();
fpSpread1.ActiveSheet.DefaultStyle = si;
}
Dim si As New FarPoint.Win.Spread.StyleInfo
Dim dlg As DialogResult
si.Font = New Font("Comic Sans MS", 12)
fpSpread1.ActiveSheet.DefaultStyle = si
dlg = MessageBox.Show("Reset the font?")
If dlg = DialogResult.OK Then
si.ResetFont()
fpSpread1.ActiveSheet.DefaultStyle = si
End If
See Also

Reference

StyleInfo Class
StyleInfo Members