Accord.Controls.HistogramBox.SetTitle C# (CSharp) Метод

SetTitle() публичный Метод

Sets the window title of the histogram box.
public SetTitle ( string text ) : HistogramBox
text string The desired title text for the window.
Результат HistogramBox
        public HistogramBox SetTitle(string text)
        {
            if (this.InvokeRequired)
            {
                this.Invoke((Action)(() => SetTitle(text)));
                return this;
            }

            this.Text = text;

            return this;
        }