Spread Windows Forms 13.0 Product Documentation
FarPoint.Win Assembly / FarPoint.Win Namespace / ElementControl Class / ResetForeColor Method
Example


In This Topic
    ResetForeColor Method (ElementControl)
    In This Topic
    Resets the text color of the control to its default value.
    Syntax
    'Declaration
     
    Public Overrides Sub ResetForeColor() 
    'Usage
     
    Dim instance As ElementControl
     
    instance.ResetForeColor()
    public override void ResetForeColor()
    Remarks

    Use this method to reset the ForeColor property to its default value.

    To reset the BackColor property, use the ResetBackColor 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