Spread Windows Forms 10.0 Product Documentation
RowHeightChanged Event
Example 


Occurs when the row height has changed.
Syntax
'Declaration
 
Public Event RowHeightChanged As RowHeightChangedEventHandler
'Usage
 
Dim instance As FpSpread
Dim handler As RowHeightChangedEventHandler
 
AddHandler instance.RowHeightChanged, handler
public event RowHeightChangedEventHandler RowHeightChanged
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.

PropertyDescription
FooterGets whether the row indexes are column footer rows.  
HeaderGets whether the row indexes are column header rows.  
RowListGets the list of rows whose heights have changed.  
ViewGets the view that contains the rows whose heights have changed.  
Remarks

This event is raised by the OnRowHeight method when the height of a row of cells has changed.

For more details on the individual event arguments, refer to RowHeightChangedEventArgs members.

If you want to catch the event of a user changing the height of the rows in the column header, you need to map the SheetView.DocumentModels class, ColumnHeaderRowAxis Property property, Changed event.

Example
This example raises the event.
private void fpSpread1_RowHeightChanged(object sender, FarPoint.Win.Spread.RowHeightChangedEventArgs e)
{
     ListBox1.Items.Add("RowHeightChanged event fired!");
}
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 Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

FpSpread Class
FpSpread Members
RowHeightChangedEventArgs Class

 

 


Copyright © GrapeCity, inc. All rights reserved.