Accord.Controls.DataGridBox.SetTitle C# (CSharp) Method

SetTitle() public method

Sets the window title of the data grid box.
public SetTitle ( string text ) : DataGridBox
text string The desired title text for the window.
return DataGridBox
        public DataGridBox SetTitle(string text)
        {
            if (this.InvokeRequired)
            {
                this.Invoke((Action)(() => SetTitle(text)));
                return this;
            }

            this.Text = text;

            return this;
        }