RowHeightChange Event
Applies To
fpSpread control
Description
Occurs when the user changes the height of a row.
Syntax
C++
afx_msg void OnRowHeightfpSpread(UINT, int, CWnd*, LPVOID);
Visual Basic
Sub fpSpread_RowHeightChange(ByVal Row1 As Long, ByVal Row2 As Long)
Parameters
The following parameters are available:
Parameter | Description |
Row1 | Row number of first row whose height changed |
Row2 | Row number of last row whose height changed |
Remarks
In most cases, the row value for the Row2 parameter is the same as the value of the Row1 parameter. If the value is larger, the heights of the range of rows specified by Row1 and Row2 have all changed.
Use the SheetSendingEvent property if you want to return the sheet for which this event occured.
See Also
RowHeight, SheetSendingEvent, UserResize, UserResizeRow properties
ColWidthChange event