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


FarPoint.Win Assembly > FarPoint.Win Namespace > SuperEditBase Class : ForeColor Property
Gets or sets the text color for the control.
Syntax
'Declaration
 
Public Overrides Property ForeColor As Color
'Usage
 
Dim instance As SuperEditBase
Dim value As Color
 
instance.ForeColor = value
 
value = instance.ForeColor
public override Color ForeColor {get; set;}

Property Value

Color object containing the color for text in the edit control
Remarks

Set the background color for the control by setting the BackColor property.

You can reset the text color to its default setting by calling the ResetForeColor method.

Example
private void Form1_Load(object sender, System.EventArgs e)
{
control.Text = "ForeColor";
control.ForeColor = Color.Red;
}
private void button1_Click(object sender, System.EventArgs e)
{
control.ResetForeColor();
}
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
control.Text = "ForeColor"
control.ForeColor = Color.Red
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
control.ResetForeColor()
End Sub
See Also

Reference

SuperEditBase Class
SuperEditBase Members
BackColor Property
ResetForeColor Method