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

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

Sets size of the scatter plot window.
public SetSize ( int width, int height ) : HistogramBox
width int The desired width.
height int The desired height.
Результат HistogramBox
        public HistogramBox SetSize(int width, int height)
        {
            if (this.InvokeRequired)
            {
                this.Invoke((Action)(() => SetSize(width, height)));
                return this;
            }

            this.Width = width;
            this.Height = height;

            Refresh();

            return this;
        }