Occurs when the row height has changed.
Syntax
Event Data
The event handler receives an argument of type RowHeightChangedEventArgs containing data related to this event. The following RowHeightChangedEventArgs properties provide information specific to this event.
Property | Description |
---|
Footer | Gets whether the row indexes are column footer rows. |
Header | Gets whether the row indexes are column header rows. |
RowList | Gets the list of rows whose heights have changed. |
View | Gets the view that contains the rows whose heights have changed. |
Remarks
Example
This example raises the event.
C# | Copy Code |
---|
private void fpSpread1_RowHeightChanged(object sender, FarPoint.Win.Spread.RowHeightChangedEventArgs e)
{
ListBox1.Items.Add("RowHeightChanged event fired!");
} |
Visual Basic | Copy Code |
---|
Private Sub FpSpread1_RowHeightChanged(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.RowHeightChangedEventArgs) Handles
FpSpread1.RowHeightChanged
ListBox1.Items.Add("RowHeightChanged event fired!")
End Sub
|
Requirements
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
See Also