Be.Windows.Forms.HexBox.OnResize C# (CSharp) Method

OnResize() protected method

Raises the Resize event.
protected OnResize ( EventArgs e ) : void
e System.EventArgs An EventArgs that contains the event data.
return void
        protected override void OnResize(EventArgs e)
        {
            base.OnResize(e);
            UpdateRectanglePositioning();
        }
HexBox