Spread Windows Forms 17
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / GcDateTime Class / FieldEnter Event


In This Topic
    FieldEnter Event (GcDateTime)
    In This Topic
    Occurs when any field is entered.
    Syntax
    'Declaration
     
    
    Public Event FieldEnter As EventHandler(Of FieldEventArgs)
    'Usage
     
    
    Dim instance As GcDateTime
    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