FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > FpSpread Class : RowViewportHeightChanged Event |
'Declaration Public Event RowViewportHeightChanged As RowViewportHeightChangedEventHandler
'Usage Dim instance As FpSpread Dim handler As RowViewportHeightChangedEventHandler AddHandler instance.RowViewportHeightChanged, handler
public event RowViewportHeightChangedEventHandler RowViewportHeightChanged
The event handler receives an argument of type RowViewportHeightChangedEventArgs containing data related to this event. The following RowViewportHeightChangedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
View | Gets the view that contains the viewport row whose height has changed. |
ViewportHeight | Gets the height of the viewport row whose height has changed. |
ViewportIndex | Gets the index of the viewport row whose height has changed. |
This event is raised by the OnRowViewportHeight method when the height of a row of viewports has changed.
For more details on the individual event arguments, refer to RowViewportHeightChangedEventArgs members.
private void fpSpread1_RowViewportHeightChanged(object sender, FarPoint.Win.Spread.RowViewportHeightChangedEventArgs e) { ListBox1.Items.Add("RowViewportHeightChanged event fired!"); }
Private Sub FpSpread1_RowViewportHeightChanged(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.RowViewportHeightChangedEventArgs) Handles FpSpread1.RowViewportHeightChanged ListBox1.Items.Add("RowViewportHeightChanged event fired!") End Sub
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
FpSpread Class
FpSpread Members
RowViewportHeightChangedEventArgs Class