Spread Windows Forms 15.0
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / FpSpread Class / CellValidateInfoNeeded Event


In This Topic
    CellValidateInfoNeeded Event
    In This Topic
    Occurs when cell validate infomation is needed.
    Syntax
    'Declaration
     
    
    Public Event CellValidateInfoNeeded As EventHandler(Of CellValidateInfoNeededEventArgs)
    'Usage
     
    
    Dim instance As FpSpread
    Dim handler As EventHandler(Of CellValidateInfoNeededEventArgs)
     
    AddHandler instance.CellValidateInfoNeeded, handler
    public event EventHandler<CellValidateInfoNeededEventArgs> CellValidateInfoNeeded
    Event Data

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

    PropertyDescription
    Gets the cell validator.  
    Gets whether this validation is valid.  
    Gets the validate context.  
    See Also