Spread Windows Forms 12.0 Product Documentation
RowHeightChangedEventArgs Constructor
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > RowHeightChangedEventArgs Class : RowHeightChangedEventArgs Constructor
Overload List
OverloadDescription
Creates a new object with the RowHeightChanged event arguments.  
Creates a new object with the RowHeightChanged event arguments.  
Example
This example returns the first and last row whose height changes.
private void fpSpread1RowHeightChanged(object sender, FarPoint.Win.Spread.RowHeightChangedEventArgs e)
{
    foreach (FarPoint.Win.Spread.RowHeightChangeExtents r in r.RowList) 
    { 
        MessageBox.Show("The first row whose height changed is " + r.FirstRow.ToString() + " and the last row whose height
changed is " + r.LastRow.ToString()); 
    } 
}
Private Sub FpSpread1RowHeightChanged(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.RowHeightChangedEventArgs) Handles
FpSpread1.RowHeightChanged
    Dim r As FarPoint.Win.Spread.RowHeightChangeExtents
    For Each r In e.RowList
        MessageBox.Show("The first row whose height changed is " & r.FirstRow.ToString() & " and the last row whose height
changed is " & r.LastRow.ToString())
    Next
End Sub
See Also

Reference

RowHeightChangedEventArgs Class
RowHeightChangedEventArgs Members