ComponentOne Input for WinForms
C1.Win.C1Input.4.5.2 Assembly / C1.Win.C1Input Namespace / C1DropDownControl Class / PostValidating Event

In This Topic
    PostValidating Event (C1DropDownControl)
    In This Topic
    Programmatic typed value validation.
    Syntax
    'Declaration
     
    Public Event PostValidating As PostValidationEventHandler
    public event PostValidationEventHandler PostValidating
    Event Data

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

    PropertyDescription
    Error information in case of validation failure. Can be set in event code in PostValidating.  
    PostValidation object that fired the event.  
    Validation result (assigned in the event code in PostValidating). Default: True  
    The value to validate.  
    See Also