WatermarkTextBox.RemoveWatermak C# (CSharp) Method

RemoveWatermak() public method

Remove watermark from the textbox
public RemoveWatermak ( ) : void
return void
        public void RemoveWatermak()
        {
            if (this._watermarkActive)
            {
                this._watermarkActive = false;
                this.Text = "";
                this.ForeColor = Color.Black;
            }
        }
        /// <summary>