Spread Windows Forms 12.0 Product Documentation
EnterCell Event
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > FpSpread Class : EnterCell Event
Occurs when the user enters a cell.
Syntax
'Declaration
 
Public Event EnterCell As EnterCellEventHandler
'Usage
 
Dim instance As FpSpread
Dim handler As EnterCellEventHandler
 
AddHandler instance.EnterCell, handler
public event EnterCellEventHandler EnterCell
Event Data

The event handler receives an argument of type EnterCellEventArgs containing data related to this event. The following EnterCellEventArgs properties provide information specific to this event.

PropertyDescription
Gets the column index of the cell being entered.  
Gets the row index of the cell being entered.  
Gets the view that contains the cell being entered.  
Remarks

This event is raised by the OnEnterCell method when the user enters a cell.

Setting the active cell programatically does not raise the event. It is raised only when the user interacts and changes cells.

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

Example
This example raises the event.
Label1.Text = "Click on a different cell to fire the EnterCell event";

private void fpSpread1_EnterCell(object sender, FarPoint.Win.Spread.EnterCellEventArgs e)
{
     ListBox1.Items.Add("EnterCell event fired!");
}
Label1.Text = "Click on a different cell to fire the EnterCell event"

Private Sub FpSpread1_EnterCell(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.EnterCellEventArgs) Handles FpSpread1.EnterCell
     ListBox1.Items.Add("EnterCell event fired!")
End Sub
See Also