Occurs when the value of the ClientRectangle property is changed.
This event notifies you any time the client rectangle of the band is changed, either through code, or as the user is dragging bands, in real-time.
This example handles the ClientRectangleChanged event of a rebar band and dynamically sets the caption text of the form to the value of the ClientRectangle property when the size of the band changes.
private void rebarBand1_ClientRectangleChanged(object sender, System.EventArgs e) { this.Text = (sender as RebarBand).ClientRectangle.ToString(); }
RebarBand Class | Skybound.Rebar Namespace