Occurs when the user leaves a cell.
Syntax
Event Data
The event handler receives an argument of type LeaveCellEventArgs containing data related to this event. The following LeaveCellEventArgs properties provide information specific to this event.
Property | Description |
---|
Cancel | Gets or sets whether to cancel the cell navigation. |
Column | Gets the column index of the cell being left. |
NewColumn | Gets the column index of the cell being entered. |
NewRow | Gets the row index of the cell being entered. |
Row | Gets the row index index of the cell being left. |
Remarks
Example
This example raises the LeaveCell event when the user leaves a cell.
C# | Copy Code |
---|
fpSpread1.EditMode = true;
Label1.Text = "Click on a different cell to fire the event";
private void fpSpread1_LeaveCell(object sender, FarPoint.Win.Spread.LeaveCellEventArgs e)
{
ListBox1.Items.Add("LeaveCell event fired!");
} |
Visual Basic | Copy Code |
---|
FpSpread1.EditMode = True
Label1.Text = "Click on a different cell to fire the event"
Private Sub FpSpread1_LeaveCell(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.LeaveCellEventArgs) Handles FpSpread1.LeaveCell
ListBox1.Items.Add("LeaveCell event fired!")
End Sub
|
Requirements
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
See Also