EnterRow Event
Applies To
fpSpread control
Description
Occurs when the operation mode is set to row mode and the user enters edit mode in a new cell in a new row.
Syntax
C++
afx_msg void OnEnterRowfpSpread(UINT, int, CWnd*, LPVOID);
Visual Basic
Sub fpSpread_EnterRow(ByVal Row As Long, ByVal RowIsLast As Long)
Parameters
The following parameters are available:
Parameter | Description |
---|---|
Row | Row number of row receiving the focus |
RowIsLast | Value is nonzero if row receiving the focus is beyond last row containing data |
Remarks
When the user moves the active cell to a new cell in a new row, and then enters edit mode in the cell, the EditMode event occurs, and then the EnterRow event occurs. The EditMode event also occurs when the user leaves edit mode.
Use the SheetSendingEvent property if you want to return the sheet for which this event occured.
See Also
SheetSendingEvent property
EditMode event