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


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > StyleInfo Class : ResetForeColor Method
Syntax
'Declaration
 
Public Overridable Sub ResetForeColor() 
'Usage
 
Dim instance As StyleInfo
 
instance.ResetForeColor()
public virtual void ResetForeColor()
Remarks
By default, the ForeColor 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.ForeColor = Color.Red;
fpSpread1.ActiveSheet.DefaultStyle = si;
dlg = MessageBox.Show("Reset the forecolor?");
if (dlg == DialogResult.OK)
{
si.ResetForeColor();
fpSpread1.ActiveSheet.DefaultStyle = si;
}
Dim si As New FarPoint.Win.Spread.StyleInfo
Dim dlg As DialogResult
si.ForeColor = Color.Red
fpSpread1.ActiveSheet.DefaultStyle = si
dlg = MessageBox.Show("Reset the forecolor?")
If dlg = DialogResult.OK Then
si.ResetForeColor()
fpSpread1.ActiveSheet.DefaultStyle = si
End If
See Also

Reference

StyleInfo Class
StyleInfo Members