Spread Windows Forms 12.0 Product Documentation
FieldEnter Event


GrapeCity.Win.PluginInputMan Assembly > GrapeCity.Win.Spread.InputMan.CellType Namespace > FieldsEditorControl Class : FieldEnter Event
Occurs when any field is entered.
Syntax
'Declaration
 
Public Event FieldEnter As EventHandler(Of FieldEventArgs)
'Usage
 
Dim instance As FieldsEditorControl
Dim handler As EventHandler(Of FieldEventArgs)
 
AddHandler instance.FieldEnter, handler
public event EventHandler<FieldEventArgs> FieldEnter
Event Data

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

PropertyDescription
Gets the field which triggers the event.  
Remarks
This event is raised when the input focus enters a field.
See Also