Skybound Rebar

Rebar.RowHeightChanged Event

Occurs when the height of a row is changed.

[Visual Basic]
Public Event RowHeightChanged As RebarRowEventHandler
[C#]
public event RebarRowEventHandler RowHeightChanged;

Event Data

The event handler receives an argument of type RebarRowEventArgs containing data related to this event. The following RebarRowEventArgs property provides information specific to this event.

Property Description
Row Gets the RebarRow that raised the event.

Remarks

There are three operations that can cause this event to be raised:

  1. When a band is added to a Rebar control, and the height component of the band's MinimumSize is larger than the height of the row to which it was added.
  2. When a band is removed from a Rebar control, and the height component of the band's MinimumSize was the largest of the other bands in the row that contained it.
  3. When a band is dragged to a new row by the user and the minimum height of the band is larger than the height of the new row, or was the largest of the other bands in the old row.

See Also

Rebar Class | Skybound.Rebar Namespace