Spread Windows Forms 12.0 Product Documentation
ForeColor Property (StyleInfo)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > StyleInfo Class : ForeColor Property
Syntax
'Declaration
 
Public Overridable Property ForeColor As Color
'Usage
 
Dim instance As StyleInfo
Dim value As Color
 
instance.ForeColor = value
 
value = instance.ForeColor
public virtual Color ForeColor {get; set;}

Property Value

Color object containing the text color to apply to all cells of this style
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