'Declaration
Public Event ValidateInput As EventHandler(Of ValidateInputEventArgs)
public event EventHandler<ValidateInputEventArgs> ValidateInput
Event Data
The event handler receives an argument of type ValidateInputEventArgs containing data related to this event. The following ValidateInputEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Input | New text input |
IsValidInput | Set this flag to undo the edits if the input is not valid. |
See Also